#ifndef THIRD_PARTY_BLINK_RENDERER_PLATFORM_INSTRUMENTATION_TRACING_TRACE_EVENT_H_
#define THIRD_PARTY_BLINK_RENDERER_PLATFORM_INSTRUMENTATION_TRACING_TRACE_EVENT_H_
#include "base/time/time.h"
#include "base/trace_event/trace_event.h"
#include "third_party/blink/renderer/platform/platform_export.h"
#include "third_party/blink/renderer/platform/wtf/text/wtf_string.h"
namespace blink {
namespace trace_event {
TraceScopedTrackableObject;
AsyncEnabledStateObserver;
EnabledStateObserver;
inline base::TimeTicks ToTraceTimestamp(double seconds) { … }
void ToTraceTimestamp(int64_t);
PLATFORM_EXPORT void EnableTracing(const String& category_filter);
PLATFORM_EXPORT void DisableTracing();
PLATFORM_EXPORT void AddAsyncEnabledStateObserver(
base::WeakPtr<AsyncEnabledStateObserver>);
PLATFORM_EXPORT void RemoveAsyncEnabledStateObserver(
AsyncEnabledStateObserver*);
PLATFORM_EXPORT void AddEnabledStateObserver(EnabledStateObserver*);
PLATFORM_EXPORT void RemoveEnabledStateObserver(EnabledStateObserver*);
}
}
#endif