summaryrefslogtreecommitdiffstats
path: root/sync/util
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 /sync/util
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 'sync/util')
-rw-r--r--sync/util/get_session_name_unittest.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/sync/util/get_session_name_unittest.cc b/sync/util/get_session_name_unittest.cc
index 724cd8b..2a77d4a 100644
--- a/sync/util/get_session_name_unittest.cc
+++ b/sync/util/get_session_name_unittest.cc
@@ -64,7 +64,7 @@ TEST_F(GetSessionNameTest, GetSessionNameSynchronouslyChromebox) {
// with a session name. Makes sure the returned session name is equal
// to the return value of GetSessionNameSynchronouslyForTesting().
TEST_F(GetSessionNameTest, GetSessionName) {
- GetSessionName(message_loop_.message_loop_proxy(),
+ GetSessionName(message_loop_.task_runner(),
base::Bind(&GetSessionNameTest::SetSessionNameAndQuit,
base::Unretained(this)));
message_loop_.Run();