summaryrefslogtreecommitdiffstats
path: root/dbus/bus_unittest.cc
diff options
context:
space:
mode:
authorxhwang@chromium.org <xhwang@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-05-01 16:10:30 +0000
committerxhwang@chromium.org <xhwang@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-05-01 16:10:30 +0000
commitff33b18e23fdbfeaa9df0b553e2d4288839816a5 (patch)
tree7b746aedef79d2c00d49665fdeda828e735b658f /dbus/bus_unittest.cc
parent89ba3866f85a50efec9405376e9ecbd0d155bbab (diff)
downloadchromium_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/bus_unittest.cc')
-rw-r--r--dbus/bus_unittest.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/dbus/bus_unittest.cc b/dbus/bus_unittest.cc
index a288d53..82949d3 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);