Index: content/worker/worker_main.cc |
diff --git a/content/worker/worker_main.cc b/content/worker/worker_main.cc |
index 58aca315b2928e620a5c64628692c7113fc7ccd8..459e90731030ea26974004276639f3fe8dd37a63 100644 |
--- a/content/worker/worker_main.cc |
+++ b/content/worker/worker_main.cc |
@@ -28,7 +28,7 @@ namespace content { |
// Mainline routine for running as the worker process. |
int WorkerMain(const MainFunctionParams& parameters) { |
// The main message loop of the worker process. |
- MessageLoop main_message_loop; |
+ base::MessageLoop main_message_loop; |
base::PlatformThread::SetName("CrWorkerMain"); |
base::PowerMonitor power_monitor; |
@@ -67,7 +67,7 @@ int WorkerMain(const MainFunctionParams& parameters) { |
// Load the accelerator table from the browser executable and tell the |
// message loop to use it when translating messages. |
- MessageLoop::current()->Run(); |
+ base::MessageLoop::current()->Run(); |
return 0; |
} |