tracing_agent.cc 575 B

123456789101112131415161718192021222324
  1. // Copyright 2015 The Chromium Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style license that can be
  3. // found in the LICENSE file.
  4. #include "base/trace_event/tracing_agent.h"
  5. namespace base {
  6. namespace trace_event {
  7. TracingAgent::~TracingAgent() = default;
  8. bool TracingAgent::SupportsExplicitClockSync() {
  9. return false;
  10. }
  11. void TracingAgent::RecordClockSyncMarker(
  12. const std::string& sync_id,
  13. RecordClockSyncMarkerCallback callback) {
  14. DCHECK(SupportsExplicitClockSync());
  15. }
  16. } // namespace trace_event
  17. } // namespace base