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

Unified Diff: chrome/browser/chromeos/login/fake_login_utils.cc

Issue 819133004: Make callers of CommandLine use it via the base:: namespace. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix Created 6 years 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/chromeos/login/fake_login_utils.cc
diff --git a/chrome/browser/chromeos/login/fake_login_utils.cc b/chrome/browser/chromeos/login/fake_login_utils.cc
index e25740ce2cb6c4d9910b612501942dc3c65afe15..21df5b00c62ac49261fb49241dd85a500fedfcb2 100644
--- a/chrome/browser/chromeos/login/fake_login_utils.cc
+++ b/chrome/browser/chromeos/login/fake_login_utils.cc
@@ -46,13 +46,9 @@ void FakeLoginUtils::DoBrowserLaunch(Profile* profile,
chrome::startup::IsFirstRun first_run =
first_run::IsChromeFirstRun() ? chrome::startup::IS_FIRST_RUN
: chrome::startup::IS_NOT_FIRST_RUN;
- ASSERT_TRUE(
- browser_creator.LaunchBrowser(*CommandLine::ForCurrentProcess(),
- profile,
- base::FilePath(),
- chrome::startup::IS_PROCESS_STARTUP,
- first_run,
- NULL));
+ ASSERT_TRUE(browser_creator.LaunchBrowser(
+ *base::CommandLine::ForCurrentProcess(), profile, base::FilePath(),
+ chrome::startup::IS_PROCESS_STARTUP, first_run, NULL));
}
if (login_host)
login_host->Finalize();
« no previous file with comments | « chrome/browser/chromeos/login/existing_user_controller_browsertest.cc ('k') | chrome/browser/chromeos/login/helper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698