diff options
author | sergeyu@chromium.org <sergeyu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-07-27 20:57:05 +0000 |
---|---|---|
committer | sergeyu@chromium.org <sergeyu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-07-27 20:57:05 +0000 |
commit | 89f96d350ac401bec3c108b0bf3f4c4a4634bba7 (patch) | |
tree | 49e8e5ffa2c0947de628fc64a6750cce23d61c7b /remoting/client/plugin/pepper_plugin_thread_delegate.h | |
parent | c7e526f86f0fc900b9f285da0dfd9dfc004c8fac (diff) | |
download | chromium_src-89f96d350ac401bec3c108b0bf3f4c4a4634bba7.zip chromium_src-89f96d350ac401bec3c108b0bf3f4c4a4634bba7.tar.gz chromium_src-89f96d350ac401bec3c108b0bf3f4c4a4634bba7.tar.bz2 |
Replace PluginMessageLoopProxy with PluginThreadTaskRunner.
Previosly plugin code was using PluginMessageLoopProxy that implements
MessageLoopProxy interface. We no longer need MessageLoopProxy.
Replacing PluginMessageLoopProxy with PluginThreadTaskRunner that
implements SingleThreadTaskRunner interface
Review URL: https://chromiumcodereview.appspot.com/10830016
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148801 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting/client/plugin/pepper_plugin_thread_delegate.h')
-rw-r--r-- | remoting/client/plugin/pepper_plugin_thread_delegate.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/remoting/client/plugin/pepper_plugin_thread_delegate.h b/remoting/client/plugin/pepper_plugin_thread_delegate.h index 8b4bd7b..59ea3e4 100644 --- a/remoting/client/plugin/pepper_plugin_thread_delegate.h +++ b/remoting/client/plugin/pepper_plugin_thread_delegate.h @@ -5,7 +5,7 @@ #ifndef REMOTING_CLIENT_PLUGIN_PEPPER_PLUGIN_THREAD_DELEGATE_H_ #define REMOTING_CLIENT_PLUGIN_PEPPER_PLUGIN_THREAD_DELEGATE_H_ -#include "remoting/base/plugin_message_loop_proxy.h" +#include "remoting/base/plugin_thread_task_runner.h" // Macro useful for writing cross-platform function pointers. #if defined(OS_WIN) && !defined(CDECL) @@ -20,7 +20,7 @@ class Core; namespace remoting { -class PepperPluginThreadDelegate : public PluginMessageLoopProxy::Delegate { +class PepperPluginThreadDelegate : public PluginThreadTaskRunner::Delegate { public: PepperPluginThreadDelegate(); virtual ~PepperPluginThreadDelegate(); |