summaryrefslogtreecommitdiffstats
path: root/content/plugin/plugin_thread.cc
diff options
context:
space:
mode:
authorskyostil <skyostil@chromium.org>2015-05-21 07:49:31 -0700
committerCommit bot <commit-bot@chromium.org>2015-05-21 14:50:03 +0000
commit12262cfcdbfd13d853dc358ca600bfc499e31ad5 (patch)
treee4a0efd5b4438cefec2ea83965debef3cab0019c /content/plugin/plugin_thread.cc
parent04063aa44f0b20829ae07663da96eba19ebe8f38 (diff)
downloadchromium_src-12262cfcdbfd13d853dc358ca600bfc499e31ad5.zip
chromium_src-12262cfcdbfd13d853dc358ca600bfc499e31ad5.tar.gz
chromium_src-12262cfcdbfd13d853dc358ca600bfc499e31ad5.tar.bz2
content/child: Remove use of MessageLoopProxy and deprecated MessageLoop APIs
This patch was mostly autogenerated with https://codereview.chromium.org/1010073002/. BUG=465354 TBR=jochen@chromium.org,raymes@chromium.org Review URL: https://codereview.chromium.org/1142063003 Cr-Commit-Position: refs/heads/master@{#330939}
Diffstat (limited to 'content/plugin/plugin_thread.cc')
-rw-r--r--content/plugin/plugin_thread.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/content/plugin/plugin_thread.cc b/content/plugin/plugin_thread.cc
index 7fd9bdd..7625109 100644
--- a/content/plugin/plugin_thread.cc
+++ b/content/plugin/plugin_thread.cc
@@ -138,7 +138,7 @@ bool PluginThread::OnControlMessageReceived(const IPC::Message& msg) {
void PluginThread::OnCreateChannel(int renderer_id,
bool incognito) {
scoped_refptr<PluginChannel> channel(PluginChannel::GetPluginChannel(
- renderer_id, ChildProcess::current()->io_message_loop_proxy()));
+ renderer_id, ChildProcess::current()->io_task_runner()));
IPC::ChannelHandle channel_handle;
if (channel.get()) {
channel_handle.name = channel->channel_handle().name;