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

Unified Diff: chrome/browser/service/service_process_control.cc

Issue 14113053: chrome: Use base::MessageLoop. (Part 3) (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
Index: chrome/browser/service/service_process_control.cc
diff --git a/chrome/browser/service/service_process_control.cc b/chrome/browser/service/service_process_control.cc
index c7d9e2b7c278986236055871e87573b6d7308f2c..96f9e5f5fb5d3e7c6de832f21d21dd85a1d5f746 100644
--- a/chrome/browser/service/service_process_control.cc
+++ b/chrome/browser/service/service_process_control.cc
@@ -286,8 +286,9 @@ void ServiceProcessControl::Launcher::DoDetectLaunched() {
// If the service process is not launched yet then check again in 2 seconds.
const base::TimeDelta kDetectLaunchRetry = base::TimeDelta::FromSeconds(2);
- MessageLoop::current()->PostDelayedTask(
- FROM_HERE, base::Bind(&Launcher::DoDetectLaunched, this),
+ base::MessageLoop::current()->PostDelayedTask(
+ FROM_HERE,
+ base::Bind(&Launcher::DoDetectLaunched, this),
kDetectLaunchRetry);
}

Powered by Google App Engine
This is Rietveld 408576698