| Index: base/message_loop_proxy_impl.h
|
| diff --git a/base/message_loop_proxy_impl.h b/base/message_loop_proxy_impl.h
|
| index 0c44c826c8751239e7f9a01374de40ffa74bc5e0..bea4e21b7154eb1d2009762a953dea7733e0cc53 100644
|
| --- a/base/message_loop_proxy_impl.h
|
| +++ b/base/message_loop_proxy_impl.h
|
| @@ -23,17 +23,6 @@ class BASE_EXPORT MessageLoopProxyImpl
|
|
|
| // MessageLoopProxy implementation
|
| virtual bool PostTask(const tracked_objects::Location& from_here,
|
| - Task* task) OVERRIDE;
|
| - virtual bool PostDelayedTask(const tracked_objects::Location& from_here,
|
| - Task* task,
|
| - int64 delay_ms) OVERRIDE;
|
| - virtual bool PostNonNestableTask(const tracked_objects::Location& from_here,
|
| - Task* task) OVERRIDE;
|
| - virtual bool PostNonNestableDelayedTask(
|
| - const tracked_objects::Location& from_here,
|
| - Task* task,
|
| - int64 delay_ms) OVERRIDE;
|
| - virtual bool PostTask(const tracked_objects::Location& from_here,
|
| const base::Closure& task) OVERRIDE;
|
| virtual bool PostDelayedTask(const tracked_objects::Location& from_here,
|
| const base::Closure& task,
|
| @@ -58,11 +47,6 @@ class BASE_EXPORT MessageLoopProxyImpl
|
| virtual void WillDestroyCurrentMessageLoop();
|
|
|
|
|
| - // TODO(ajwong): Remove this after we've fully migrated to base::Closure.
|
| - bool PostTaskHelper(const tracked_objects::Location& from_here,
|
| - Task* task,
|
| - int64 delay_ms,
|
| - bool nestable);
|
| bool PostTaskHelper(const tracked_objects::Location& from_here,
|
| const base::Closure& task,
|
| int64 delay_ms,
|
|
|