summaryrefslogtreecommitdiffstats
path: root/dbus/test_service.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/test_service.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/test_service.cc')
-rw-r--r--dbus/test_service.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/dbus/test_service.cc b/dbus/test_service.cc
index 4b739bf..c41d445 100644
--- a/dbus/test_service.cc
+++ b/dbus/test_service.cc
@@ -46,7 +46,7 @@ TestService::~TestService() {
bool TestService::StartService() {
base::Thread::Options thread_options;
- thread_options.message_loop_type = MessageLoop::TYPE_IO;
+ thread_options.message_loop_type = base::MessageLoop::TYPE_IO;
return StartWithOptions(thread_options);
}
@@ -153,7 +153,7 @@ void TestService::OnExported(const std::string& interface_name,
on_all_methods_exported_.Signal();
}
-void TestService::Run(MessageLoop* message_loop) {
+void TestService::Run(base::MessageLoop* message_loop) {
Bus::Options bus_options;
bus_options.bus_type = Bus::SESSION;
bus_options.connection_type = Bus::PRIVATE;