summaryrefslogtreecommitdiffstats
path: root/dbus/property_unittest.cc
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 /dbus/property_unittest.cc
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 'dbus/property_unittest.cc')
-rw-r--r--dbus/property_unittest.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/dbus/property_unittest.cc b/dbus/property_unittest.cc
index 5208f84..59faa22 100644
--- a/dbus/property_unittest.cc
+++ b/dbus/property_unittest.cc
@@ -61,7 +61,7 @@ class PropertyTest : public testing::Test {
// Start the test service, using the D-Bus thread.
TestService::Options options;
- options.dbus_task_runner = dbus_thread_->message_loop_proxy();
+ options.dbus_task_runner = dbus_thread_->task_runner();
test_service_.reset(new TestService(options));
ASSERT_TRUE(test_service_->StartService());
ASSERT_TRUE(test_service_->WaitUntilServiceIsStarted());
@@ -71,7 +71,7 @@ class PropertyTest : public testing::Test {
Bus::Options bus_options;
bus_options.bus_type = Bus::SESSION;
bus_options.connection_type = Bus::PRIVATE;
- bus_options.dbus_task_runner = dbus_thread_->message_loop_proxy();
+ bus_options.dbus_task_runner = dbus_thread_->task_runner();
bus_ = new Bus(bus_options);
object_proxy_ = bus_->GetObjectProxy(
"org.chromium.TestService",