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

Unified Diff: content/renderer/npapi/webplugin_delegate_proxy.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: content/renderer/npapi/webplugin_delegate_proxy.cc
diff --git a/content/renderer/npapi/webplugin_delegate_proxy.cc b/content/renderer/npapi/webplugin_delegate_proxy.cc
index 8e83b86942425787225ef31806dc1242e412ed8c..e5566bce6e0495c1f939c5684fbb9c706e522894 100644
--- a/content/renderer/npapi/webplugin_delegate_proxy.cc
+++ b/content/renderer/npapi/webplugin_delegate_proxy.cc
@@ -321,9 +321,8 @@ bool WebPluginDelegateProxy::Initialize(
return false;
}
- channel_host =
- PluginChannelHost::GetPluginChannelHost(
- channel_handle, ChildProcess::current()->io_message_loop_proxy());
+ channel_host = PluginChannelHost::GetPluginChannelHost(
+ channel_handle, ChildProcess::current()->io_task_runner());
if (!channel_host.get()) {
LOG(ERROR) << "Couldn't get PluginChannelHost";
continue;

Powered by Google App Engine
This is Rietveld 408576698