Index: remoting/base/plugin_message_loop_proxy.h |
diff --git a/remoting/base/plugin_message_loop_proxy.h b/remoting/base/plugin_message_loop_proxy.h |
index 8a0d840b446cd769d3b6eb29f75ea39feca99645..1d7f03f98a7d09e6513f9224efa53a17e20922db 100644 |
--- a/remoting/base/plugin_message_loop_proxy.h |
+++ b/remoting/base/plugin_message_loop_proxy.h |
@@ -31,22 +31,7 @@ class PluginMessageLoopProxy : public base::MessageLoopProxy { |
void Detach(); |
- // base::MessageLoopProxy interface. |
- 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; |
- |
+ // base::MessageLoopProxy implementation. |
virtual bool PostTask( |
const tracked_objects::Location& from_here, |
const base::Closure& task) OVERRIDE; |
@@ -67,7 +52,6 @@ class PluginMessageLoopProxy : public base::MessageLoopProxy { |
private: |
static void TaskSpringboard(void* data); |
- void RunTaskIf(Task* task); |
void RunClosureIf(const base::Closure& task); |
base::PlatformThreadId plugin_thread_id_; |