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

Unified Diff: apps/app_launch_for_metro_restart_win.cc

Issue 14061020: apps: 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: apps/app_launch_for_metro_restart_win.cc
diff --git a/apps/app_launch_for_metro_restart_win.cc b/apps/app_launch_for_metro_restart_win.cc
index 1fa0cc9e36ce044a8fe7fa3c38ceb6122953d36d..86bf775ae587b6e7ecbaa373867862a918f3ba03 100644
--- a/apps/app_launch_for_metro_restart_win.cc
+++ b/apps/app_launch_for_metro_restart_win.cc
@@ -76,11 +76,9 @@ void HandleAppLaunchForMetroRestart(Profile* profile) {
}
const int kRestartAppLaunchDelayMs = 1000;
- MessageLoop::current()->PostDelayedTask(
+ base::MessageLoop::current()->PostDelayedTask(
FROM_HERE,
- base::Bind(&LaunchAppWithId,
- profile,
- extension_id),
+ base::Bind(&LaunchAppWithId, profile, extension_id),
base::TimeDelta::FromMilliseconds(kRestartAppLaunchDelayMs));
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698