| Index: dbus/bus_unittest.cc
|
| diff --git a/dbus/bus_unittest.cc b/dbus/bus_unittest.cc
|
| index a288d535dcd9b445c29c32ef6cd9f91066a08c6b..82949d3e0e8f0abd60d03a717eab521ddc0482bc 100644
|
| --- a/dbus/bus_unittest.cc
|
| +++ b/dbus/bus_unittest.cc
|
| @@ -87,11 +87,11 @@ TEST(BusTest, GetObjectProxyIgnoreUnknownService) {
|
|
|
| TEST(BusTest, RemoveObjectProxy) {
|
| // Setup the current thread's MessageLoop.
|
| - MessageLoop message_loop;
|
| + base::MessageLoop message_loop;
|
|
|
| // Start the 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;
|
| base::Thread dbus_thread("D-Bus thread");
|
| dbus_thread.StartWithOptions(thread_options);
|
|
|
| @@ -171,7 +171,7 @@ TEST(BusTest, GetExportedObject) {
|
| TEST(BusTest, UnregisterExportedObject) {
|
| // Start the 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;
|
| base::Thread dbus_thread("D-Bus thread");
|
| dbus_thread.StartWithOptions(thread_options);
|
|
|
| @@ -221,7 +221,7 @@ TEST(BusTest, ShutdownAndBlock) {
|
| TEST(BusTest, ShutdownAndBlockWithDBusThread) {
|
| // Start the 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;
|
| base::Thread dbus_thread("D-Bus thread");
|
| dbus_thread.StartWithOptions(thread_options);
|
|
|
|
|