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

Unified Diff: chrome/browser/extensions/webstore_startup_installer_browsertest.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/extensions/webstore_startup_installer_browsertest.cc
diff --git a/chrome/browser/extensions/webstore_startup_installer_browsertest.cc b/chrome/browser/extensions/webstore_startup_installer_browsertest.cc
index 76b4ff17fb64d5d56cf8c579b5b8f171d1ad3cf8..409fa01f4fabad405656ac1fed4b08df5a654757 100644
--- a/chrome/browser/extensions/webstore_startup_installer_browsertest.cc
+++ b/chrome/browser/extensions/webstore_startup_installer_browsertest.cc
@@ -354,9 +354,10 @@ IN_PROC_BROWSER_TEST_F(CommandLineWebstoreInstall, LimitedAccept) {
CommandLine* command_line = CommandLine::ForCurrentProcess();
command_line->AppendSwitchASCII(
switches::kLimitedInstallFromWebstore, "2");
- helper.LimitedInstallFromWebstore(*command_line, browser()->profile(),
- MessageLoop::QuitWhenIdleClosure());
- MessageLoop::current()->Run();
+ helper.LimitedInstallFromWebstore(*command_line,
+ browser()->profile(),
+ base::MessageLoop::QuitWhenIdleClosure());
+ base::MessageLoop::current()->Run();
EXPECT_TRUE(saw_install());
EXPECT_EQ(0, browser_open_count());

Powered by Google App Engine
This is Rietveld 408576698