| Index: base/trace_event/trace_log.h
|
| diff --git a/base/trace_event/trace_log.h b/base/trace_event/trace_log.h
|
| index 85fe153ae8f720c2c2eea8c79c69c678ab2465ea..6fabd730a803065effe11adbdbceb02aba3098f1 100644
|
| --- a/base/trace_event/trace_log.h
|
| +++ b/base/trace_event/trace_log.h
|
| @@ -285,15 +285,6 @@ class BASE_EXPORT TraceLog : public MemoryDumpProvider {
|
| const char* name,
|
| TraceEventHandle handle);
|
|
|
| - // For every matching event, the callback will be called.
|
| - typedef base::Callback<void()> WatchEventCallback;
|
| - void SetWatchEvent(const std::string& category_name,
|
| - const std::string& event_name,
|
| - const WatchEventCallback& callback);
|
| - // Cancel the watch event. If tracing is enabled, this may race with the
|
| - // watch event notification firing.
|
| - void CancelWatchEvent();
|
| -
|
| int process_id() const { return process_id_; }
|
|
|
| uint64_t MangleEventId(uint64_t id);
|
| @@ -503,11 +494,6 @@ class BASE_EXPORT TraceLog : public MemoryDumpProvider {
|
|
|
| TimeDelta time_offset_;
|
|
|
| - // Allow tests to wake up when certain events occur.
|
| - WatchEventCallback watch_event_callback_;
|
| - subtle::AtomicWord /* const unsigned char* */ watch_category_;
|
| - std::string watch_event_name_;
|
| -
|
| subtle::AtomicWord /* Options */ trace_options_;
|
|
|
| TraceConfig trace_config_;
|
|
|