diff options
author | skyostil <skyostil@chromium.org> | 2015-06-17 08:46:04 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-06-17 15:46:47 +0000 |
commit | 8a033aaf2d76655ce5686cd80b36a759582dcd6d (patch) | |
tree | 30d8ad67ad8eef6ed14a4b7de82c809df50fa74c /dbus/test_server.cc | |
parent | d5399555b35888360dea6c774236bcf573ef1bac (diff) | |
download | chromium_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 'dbus/test_server.cc')
-rw-r--r-- | dbus/test_server.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dbus/test_server.cc b/dbus/test_server.cc index 7e4722d..1b63064 100644 --- a/dbus/test_server.cc +++ b/dbus/test_server.cc @@ -19,7 +19,7 @@ int main(int argc, char** argv) { CHECK(dbus_thread->StartWithOptions(thread_options)); dbus::TestService::Options options; - options.dbus_task_runner = dbus_thread->message_loop_proxy(); + options.dbus_task_runner = dbus_thread->task_runner(); dbus::TestService* test_service = new dbus::TestService(options); CHECK(test_service->StartService()); CHECK(test_service->WaitUntilServiceIsStarted()); |