summaryrefslogtreecommitdiffstats
path: root/jingle
diff options
context:
space:
mode:
authorskyostil <skyostil@chromium.org>2015-06-17 08:46:04 -0700
committerCommit bot <commit-bot@chromium.org>2015-06-17 15:46:47 +0000
commit8a033aaf2d76655ce5686cd80b36a759582dcd6d (patch)
tree30d8ad67ad8eef6ed14a4b7de82c809df50fa74c /jingle
parentd5399555b35888360dea6c774236bcf573ef1bac (diff)
downloadchromium_src-8a033aaf2d76655ce5686cd80b36a759582dcd6d.zip
chromium_src-8a033aaf2d76655ce5686cd80b36a759582dcd6d.tar.gz
chromium_src-8a033aaf2d76655ce5686cd80b36a759582dcd6d.tar.bz2
Migrate callers of message_loop_proxy() to task_runner()
Migrate callers of {MessageLoop,Thread}::message_loop_proxy() to {MessageLoop,Thread}::task_runner(). Since the types at the call sites have already been updated, this is just a bulk rename. BUG=465354 TBR=armansito@chromium.org Review URL: https://codereview.chromium.org/1179163002 Cr-Commit-Position: refs/heads/master@{#334840}
Diffstat (limited to 'jingle')
-rw-r--r--jingle/notifier/base/xmpp_connection_unittest.cc2
-rw-r--r--jingle/notifier/listener/push_client_unittest.cc2
-rw-r--r--jingle/notifier/listener/xmpp_push_client_unittest.cc2
3 files changed, 3 insertions, 3 deletions
diff --git a/jingle/notifier/base/xmpp_connection_unittest.cc b/jingle/notifier/base/xmpp_connection_unittest.cc
index 147edac..2e3eb59 100644
--- a/jingle/notifier/base/xmpp_connection_unittest.cc
+++ b/jingle/notifier/base/xmpp_connection_unittest.cc
@@ -80,7 +80,7 @@ class XmppConnectionTest : public testing::Test {
message_loop_.reset(new base::MessageLoop(pump.Pass()));
url_request_context_getter_ = new net::TestURLRequestContextGetter(
- message_loop_->message_loop_proxy());
+ message_loop_->task_runner());
}
~XmppConnectionTest() override {}
diff --git a/jingle/notifier/listener/push_client_unittest.cc b/jingle/notifier/listener/push_client_unittest.cc
index 5296663..1bf4e653 100644
--- a/jingle/notifier/listener/push_client_unittest.cc
+++ b/jingle/notifier/listener/push_client_unittest.cc
@@ -23,7 +23,7 @@ class PushClientTest : public testing::Test {
PushClientTest() {
notifier_options_.request_context_getter =
new net::TestURLRequestContextGetter(
- message_loop_.message_loop_proxy());
+ message_loop_.task_runner());
}
~PushClientTest() override {}
diff --git a/jingle/notifier/listener/xmpp_push_client_unittest.cc b/jingle/notifier/listener/xmpp_push_client_unittest.cc
index abe6775..f282ca8 100644
--- a/jingle/notifier/listener/xmpp_push_client_unittest.cc
+++ b/jingle/notifier/listener/xmpp_push_client_unittest.cc
@@ -35,7 +35,7 @@ class XmppPushClientTest : public testing::Test {
XmppPushClientTest() {
notifier_options_.request_context_getter =
new net::TestURLRequestContextGetter(
- message_loop_.message_loop_proxy());
+ message_loop_.task_runner());
}
~XmppPushClientTest() override {}