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

Unified Diff: chrome/browser/extensions/startup_helper.cc

Issue 14113053: chrome: Use base::MessageLoop. (Part 3) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase again Created 7 years, 7 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/extensions/startup_helper.cc
diff --git a/chrome/browser/extensions/startup_helper.cc b/chrome/browser/extensions/startup_helper.cc
index 77dc2d2361c95c01e7f0468dd0f4e423cbaeefdd..80c2837da53243360442a90507d350f3d09bb0cc 100644
--- a/chrome/browser/extensions/startup_helper.cc
+++ b/chrome/browser/extensions/startup_helper.cc
@@ -298,9 +298,9 @@ bool StartupHelper::InstallFromWebstore(const CommandLine& cmd_line,
AppInstallHelper helper;
helper.BeginInstall(profile, id,
!cmd_line.HasSwitch(switches::kForceAppMode),
- MessageLoop::QuitWhenIdleClosure());
+ base::MessageLoop::QuitWhenIdleClosure());
- MessageLoop::current()->Run();
+ base::MessageLoop::current()->Run();
if (!helper.success())
LOG(ERROR) << "InstallFromWebstore failed with error: " << helper.error();
return helper.success();
« no previous file with comments | « chrome/browser/extensions/standard_management_policy_provider_unittest.cc ('k') | chrome/browser/extensions/state_store.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698