diff options
author | xhwang@chromium.org <xhwang@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-05-01 16:10:30 +0000 |
---|---|---|
committer | xhwang@chromium.org <xhwang@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-05-01 16:10:30 +0000 |
commit | ff33b18e23fdbfeaa9df0b553e2d4288839816a5 (patch) | |
tree | 7b746aedef79d2c00d49665fdeda828e735b658f /dbus/property_unittest.cc | |
parent | 89ba3866f85a50efec9405376e9ecbd0d155bbab (diff) | |
download | chromium_src-ff33b18e23fdbfeaa9df0b553e2d4288839816a5.zip chromium_src-ff33b18e23fdbfeaa9df0b553e2d4288839816a5.tar.gz chromium_src-ff33b18e23fdbfeaa9df0b553e2d4288839816a5.tar.bz2 |
dbus: Use base::MessageLoop.
BUG=236029
R=keybuk@chromium.org
Review URL: https://chromiumcodereview.appspot.com/14386016
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@197629 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'dbus/property_unittest.cc')
-rw-r--r-- | dbus/property_unittest.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dbus/property_unittest.cc b/dbus/property_unittest.cc index 98b5cfc..ed5bfc3 100644 --- a/dbus/property_unittest.cc +++ b/dbus/property_unittest.cc @@ -51,7 +51,7 @@ class PropertyTest : public testing::Test { // Start the D-Bus thread. dbus_thread_.reset(new base::Thread("D-Bus Thread")); base::Thread::Options thread_options; - thread_options.message_loop_type = MessageLoop::TYPE_IO; + thread_options.message_loop_type = base::MessageLoop::TYPE_IO; ASSERT_TRUE(dbus_thread_->StartWithOptions(thread_options)); // Start the test service, using the D-Bus thread. @@ -136,7 +136,7 @@ class PropertyTest : public testing::Test { } } - MessageLoop message_loop_; + base::MessageLoop message_loop_; scoped_ptr<base::Thread> dbus_thread_; scoped_refptr<dbus::Bus> bus_; dbus::ObjectProxy* object_proxy_; |