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

Unified Diff: ppapi/proxy/proxy_channel.h

Issue 6901146: Switch IPC::ChannelProxy to use MessageLoopProxy instead of MessageLoop. This allows us to remov... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 8 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/ppb_flash_file_proxy.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/proxy/proxy_channel.h
===================================================================
--- ppapi/proxy/proxy_channel.h (revision 83679)
+++ ppapi/proxy/proxy_channel.h (working copy)
@@ -11,9 +11,8 @@
#include "ipc/ipc_platform_file.h"
#include "ipc/ipc_sync_channel.h"
-class MessageLoop;
-
namespace base {
+class MessageLoopProxy;
class WaitableEvent;
}
@@ -34,7 +33,7 @@
class Delegate {
public:
// Returns the dedicated message loop for processing IPC requests.
- virtual MessageLoop* GetIPCMessageLoop() = 0;
+ virtual base::MessageLoopProxy* GetIPCMessageLoop() = 0;
// Returns the event object that becomes signalled when the main thread's
// message loop exits.
« no previous file with comments | « ppapi/proxy/ppb_flash_file_proxy.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698