Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(776)

Unified Diff: dbus/test_server.cc

Issue 1179163002: Migrate callers of message_loop_proxy() to task_runner() (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased. Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « dbus/signal_sender_verification_unittest.cc ('k') | device/bluetooth/bluetooth_socket_thread.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dbus/test_server.cc
diff --git a/dbus/test_server.cc b/dbus/test_server.cc
index 7e4722de9e99c6c5b4bcd903c01c61e17b334532..1b630648b70c87c65ba37988fcdaf4a9cedb4056 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());
« no previous file with comments | « dbus/signal_sender_verification_unittest.cc ('k') | device/bluetooth/bluetooth_socket_thread.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698