diff options
author | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-02-20 01:36:53 +0000 |
---|---|---|
committer | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-02-20 01:36:53 +0000 |
commit | 200328ab0dcebf5869a63fb891a58c3e39768b12 (patch) | |
tree | 16325243683583f306a51c05ca0c44518b4af1b2 /dbus/test_server.cc | |
parent | 044512594122e2feb1fb78bd96b59a300c98a253 (diff) | |
download | chromium_src-200328ab0dcebf5869a63fb891a58c3e39768b12.zip chromium_src-200328ab0dcebf5869a63fb891a58c3e39768b12.tar.gz chromium_src-200328ab0dcebf5869a63fb891a58c3e39768b12.tar.bz2 |
DBus: Use TaskRunners instead of MessageLoopProxies.
Review URL: https://chromiumcodereview.appspot.com/12255043
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@183362 0039d316-1c4b-4281-b951-d872f2087c98
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 827f62d..0c5cc756 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_thread_message_loop_proxy = dbus_thread->message_loop_proxy(); + options.dbus_task_runner = dbus_thread->message_loop_proxy(); dbus::TestService* test_service = new dbus::TestService(options); CHECK(test_service->StartService()); CHECK(test_service->WaitUntilServiceIsStarted()); |