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

Unified Diff: ppapi/proxy/proxy_channel.cc

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: Cleanup. 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
Index: ppapi/proxy/proxy_channel.cc
diff --git a/ppapi/proxy/proxy_channel.cc b/ppapi/proxy/proxy_channel.cc
index 45c2a77955aabf3a05afd22e917491c99f245c80..6753fbf55a3eb7e73d37c86251f11143fe4ffcf1 100644
--- a/ppapi/proxy/proxy_channel.cc
+++ b/ppapi/proxy/proxy_channel.cc
@@ -35,7 +35,7 @@ bool ProxyChannel::InitWithChannel(Delegate* delegate,
? IPC::Channel::MODE_CLIENT
: IPC::Channel::MODE_SERVER;
channel_ = IPC::SyncChannel::Create(channel_handle, mode, this,
- delegate->GetIPCMessageLoop(), true,
+ delegate->GetIPCTaskRunner(), true,
delegate->GetShutdownEvent());
return true;
}

Powered by Google App Engine
This is Rietveld 408576698