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

Unified Diff: content/worker/worker_main.cc

Issue 14335017: content: Use base::MessageLoop. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase 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 | « content/worker/websharedworkerclient_proxy.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
}
« no previous file with comments | « content/worker/websharedworkerclient_proxy.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698