Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(215)

Unified Diff: ppapi/proxy/proxy_channel.h

Issue 1142063003: content/child: Remove use of MessageLoopProxy and deprecated MessageLoop APIs (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Build fix. Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ppapi/proxy/ppapi_proxy_test.cc ('k') | ppapi/proxy/proxy_channel.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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.
« no previous file with comments | « ppapi/proxy/ppapi_proxy_test.cc ('k') | ppapi/proxy/proxy_channel.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698