Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(90)

Unified Diff: dbus/test_server.cc

Issue 14386016: dbus: Use base::MessageLoop. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « dbus/signal_sender_verification_unittest.cc ('k') | dbus/test_service.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dbus/test_server.cc
diff --git a/dbus/test_server.cc b/dbus/test_server.cc
index 0c5cc756fdbb1316906c4105c81c73f91ab99d9a..88f751f7eb507537cf68ea3650e6806eb58ab738 100644
--- a/dbus/test_server.cc
+++ b/dbus/test_server.cc
@@ -15,7 +15,7 @@ int main(int argc, char** argv) {
base::Thread* dbus_thread = 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;
CHECK(dbus_thread->StartWithOptions(thread_options));
dbus::TestService::Options options;
« no previous file with comments | « dbus/signal_sender_verification_unittest.cc ('k') | dbus/test_service.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698