| Index: dbus/property_unittest.cc
|
| diff --git a/dbus/property_unittest.cc b/dbus/property_unittest.cc
|
| index 98b5cfcdb7d27d7b4f5945e19a5f4ec3075b6103..ed5bfc3558a2133c077b67c5e1ad0f333c7083d2 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_;
|
|
|