| Index: base/message_loop/message_loop.h
|
| diff --git a/base/message_loop/message_loop.h b/base/message_loop/message_loop.h
|
| index 63a29f15e955629ecdf786ce7ee3944935e035bc..77edfdb1331c0b83b095b06962a45dd261faa9d1 100644
|
| --- a/base/message_loop/message_loop.h
|
| +++ b/base/message_loop/message_loop.h
|
| @@ -242,9 +242,6 @@ class BASE_EXPORT MessageLoop : public MessagePump::Delegate {
|
| // Return as soon as all items that can be run are taken care of.
|
| void RunUntilIdle();
|
|
|
| - // TODO(jbates) remove this. crbug.com/131220. See QuitWhenIdle().
|
| - void Quit() { QuitWhenIdle(); }
|
| -
|
| // Deprecated: use RunLoop instead.
|
| //
|
| // Signals the Run method to return when it becomes idle. It will continue to
|
| @@ -268,9 +265,6 @@ class BASE_EXPORT MessageLoop : public MessagePump::Delegate {
|
| // to be processed before returning from Run.
|
| void QuitNow();
|
|
|
| - // TODO(jbates) remove this. crbug.com/131220. See QuitWhenIdleClosure().
|
| - static Closure QuitClosure() { return QuitWhenIdleClosure(); }
|
| -
|
| // Deprecated: use RunLoop instead.
|
| // Construct a Closure that will call QuitWhenIdle(). Useful to schedule an
|
| // arbitrary MessageLoop to QuitWhenIdle.
|
|
|