summaryrefslogtreecommitdiffstats
path: root/rlz
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 /rlz
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 'rlz')
-rw-r--r--rlz/lib/rlz_lib_test.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/rlz/lib/rlz_lib_test.cc b/rlz/lib/rlz_lib_test.cc
index fd6f419..5e1be3c 100644
--- a/rlz/lib/rlz_lib_test.cc
+++ b/rlz/lib/rlz_lib_test.cc
@@ -445,7 +445,7 @@ TEST_F(RlzLibTest, SendFinancialPing) {
scoped_refptr<net::TestURLRequestContextGetter> context =
new net::TestURLRequestContextGetter(
- io_thread.message_loop()->message_loop_proxy());
+ io_thread.message_loop()->task_runner());
rlz_lib::SetURLRequestContext(context.get());
URLRequestRAII set_context(context.get());
@@ -498,7 +498,7 @@ TEST_F(RlzLibTest, SendFinancialPingDuringShutdown) {
scoped_refptr<net::TestURLRequestContextGetter> context =
new net::TestURLRequestContextGetter(
- io_thread.message_loop()->message_loop_proxy());
+ io_thread.message_loop()->task_runner());
rlz_lib::SetURLRequestContext(context.get());
URLRequestRAII set_context(context.get());