diff options
Diffstat (limited to 'dbus/object_manager_unittest.cc')
-rw-r--r-- | dbus/object_manager_unittest.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dbus/object_manager_unittest.cc b/dbus/object_manager_unittest.cc index 9f86bc9..3033b20 100644 --- a/dbus/object_manager_unittest.cc +++ b/dbus/object_manager_unittest.cc @@ -64,7 +64,7 @@ class ObjectManagerTest // 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. @@ -176,7 +176,7 @@ protected: WaitForMethodCallback(); } - MessageLoop message_loop_; + base::MessageLoop message_loop_; scoped_ptr<base::Thread> dbus_thread_; scoped_refptr<dbus::Bus> bus_; dbus::ObjectManager* object_manager_; |