| Index: base/message_loop_proxy_impl.h
|
| diff --git a/base/message_loop_proxy_impl.h b/base/message_loop_proxy_impl.h
|
| index bb1fc0bfe0f149920056d10a1bcbfd37fbe1264a..847ee4cf238e3643bcd58a2f246db1f1a7ec2a3c 100644
|
| --- a/base/message_loop_proxy_impl.h
|
| +++ b/base/message_loop_proxy_impl.h
|
| @@ -22,18 +22,14 @@ class BASE_EXPORT MessageLoopProxyImpl
|
| virtual ~MessageLoopProxyImpl();
|
|
|
| // MessageLoopProxy implementation
|
| - 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,
|
| int64 delay_ms) OVERRIDE;
|
| - virtual bool PostNonNestableTask(const tracked_objects::Location& from_here,
|
| - const base::Closure& task) OVERRIDE;
|
| virtual bool PostNonNestableDelayedTask(
|
| const tracked_objects::Location& from_here,
|
| const base::Closure& task,
|
| int64 delay_ms) OVERRIDE;
|
| - virtual bool BelongsToCurrentThread() OVERRIDE;
|
| + virtual bool RunsTasksOnCurrentThread() const OVERRIDE;
|
|
|
| protected:
|
| // Override OnDestruct so that we can delete the object on the target message
|
|
|