Index: ppapi/proxy/proxy_channel.h |
diff --git a/ppapi/proxy/proxy_channel.h b/ppapi/proxy/proxy_channel.h |
index ffa906ee3e60bde735b26280e296ab9540cb3301..1de65117c5925c58ac483b6bea702e489c2bd982 100644 |
--- a/ppapi/proxy/proxy_channel.h |
+++ b/ppapi/proxy/proxy_channel.h |
@@ -15,7 +15,7 @@ |
#include "ppapi/proxy/ppapi_proxy_export.h" |
namespace base { |
-class MessageLoopProxy; |
+class SingleThreadTaskRunner; |
class WaitableEvent; |
} |
@@ -34,8 +34,8 @@ class PPAPI_PROXY_EXPORT ProxyChannel |
public: |
virtual ~Delegate() {} |
- // Returns the dedicated message loop for processing IPC requests. |
- virtual base::MessageLoopProxy* GetIPCMessageLoop() = 0; |
+ // Returns the task runner for processing IPC requests. |
+ virtual base::SingleThreadTaskRunner* GetIPCTaskRunner() = 0; |
// Returns the event object that becomes signalled when the main thread's |
// message loop exits. |