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

Unified Diff: chrome/browser/chromeos/policy/login_screen_default_policy_browsertest.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/policy/login_screen_default_policy_browsertest.cc
diff --git a/chrome/browser/chromeos/policy/login_screen_default_policy_browsertest.cc b/chrome/browser/chromeos/policy/login_screen_default_policy_browsertest.cc
index c93f0f440a4987909c76c3895217b45f0de34bea..64e8dfa14469631f524489465cd47bdbd7c43696 100644
--- a/chrome/browser/chromeos/policy/login_screen_default_policy_browsertest.cc
+++ b/chrome/browser/chromeos/policy/login_screen_default_policy_browsertest.cc
@@ -103,7 +103,7 @@ class LoginScreenDefaultPolicyLoginScreenBrowsertest
virtual ~LoginScreenDefaultPolicyLoginScreenBrowsertest();
// LoginScreenDefaultPolicyBrowsertestBase:
- virtual void SetUpCommandLine(CommandLine* command_line) override;
+ virtual void SetUpCommandLine(base::CommandLine* command_line) override;
virtual void SetUpOnMainThread() override;
virtual void TearDownOnMainThread() override;
@@ -166,7 +166,7 @@ LoginScreenDefaultPolicyLoginScreenBrowsertest::
}
void LoginScreenDefaultPolicyLoginScreenBrowsertest::SetUpCommandLine(
- CommandLine* command_line) {
+ base::CommandLine* command_line) {
LoginScreenDefaultPolicyBrowsertestBase::SetUpCommandLine(command_line);
command_line->AppendSwitch(chromeos::switches::kLoginManager);
command_line->AppendSwitch(chromeos::switches::kForceLoginManagerInTests);

Powered by Google App Engine
This is Rietveld 408576698