Index: sync/tools/sync_client.cc |
diff --git a/sync/tools/sync_client.cc b/sync/tools/sync_client.cc |
index 43b63f5283053b923b3f54c7536f727a022dd803..7623db1e87e93599a0007fca11dd341ce551e81a 100644 |
--- a/sync/tools/sync_client.cc |
+++ b/sync/tools/sync_client.cc |
@@ -237,10 +237,10 @@ int SyncClientMain(int argc, char* argv[]) { |
logging::DELETE_OLD_LOG_FILE, |
logging::DISABLE_DCHECK_FOR_NON_OFFICIAL_RELEASE_BUILDS); |
- MessageLoop sync_loop; |
+ base::MessageLoop sync_loop; |
base::Thread io_thread("IO thread"); |
base::Thread::Options options; |
- options.message_loop_type = MessageLoop::TYPE_IO; |
+ options.message_loop_type = base::MessageLoop::TYPE_IO; |
io_thread.StartWithOptions(options); |
// Parse command line. |