| Index: base/message_loop/message_loop.h
|
| diff --git a/base/message_loop/message_loop.h b/base/message_loop/message_loop.h
|
| index 107e442e1596a08d80a8495e4d9db86e42ca1dbf..5b1728e439396df819bda5a29e2c1773c0a4a378 100644
|
| --- a/base/message_loop/message_loop.h
|
| +++ b/base/message_loop/message_loop.h
|
| @@ -46,7 +46,6 @@ class JavaMessageHandlerFactory;
|
|
|
| namespace base {
|
|
|
| -class HistogramBase;
|
| class RunLoop;
|
| class ThreadTaskRunnerHandle;
|
| class WaitableEvent;
|
| @@ -129,8 +128,6 @@ class BASE_EXPORT MessageLoop : public MessagePump::Delegate {
|
| // Returns the MessageLoop object for the current thread, or null if none.
|
| static MessageLoop* current();
|
|
|
| - static void EnableHistogrammer(bool enable_histogrammer);
|
| -
|
| typedef std::unique_ptr<MessagePump>(MessagePumpFactory)();
|
| // Uses the given base::MessagePumpForUIFactory to override the default
|
| // MessagePump implementation for 'TYPE_UI'. Returns true if the factory
|
| @@ -397,15 +394,6 @@ class BASE_EXPORT MessageLoop : public MessagePump::Delegate {
|
| // responsible for synchronizing ScheduleWork() calls.
|
| void ScheduleWork();
|
|
|
| - // Start recording histogram info about events and action IF it was enabled
|
| - // and IF the statistics recorder can accept a registration of our histogram.
|
| - void StartHistogrammer();
|
| -
|
| - // Add occurrence of event to our histogram, so that we can see what is being
|
| - // done in a specific MessageLoop instance (i.e., specific thread).
|
| - // If message_histogram_ is NULL, this is a no-op.
|
| - void HistogramEvent(int event);
|
| -
|
| // Notify observers that a nested message loop is starting.
|
| void NotifyBeginNestedLoop();
|
|
|
| @@ -453,9 +441,6 @@ class BASE_EXPORT MessageLoop : public MessagePump::Delegate {
|
| // if type_ is TYPE_CUSTOM and pump_ is null.
|
| MessagePumpFactoryCallback pump_factory_;
|
|
|
| - // A profiling histogram showing the counts of various messages and events.
|
| - HistogramBase* message_histogram_;
|
| -
|
| RunLoop* run_loop_;
|
|
|
| ObserverList<TaskObserver> task_observers_;
|
|
|