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

Unified Diff: chrome/browser/chromeos/login/saml/saml_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/login/saml/saml_browsertest.cc
diff --git a/chrome/browser/chromeos/login/saml/saml_browsertest.cc b/chrome/browser/chromeos/login/saml/saml_browsertest.cc
index e82f1d0b3968d3a17b4f6461df83b3775a106c7b..f28c1d73c79dd775dfb35a8c8b573282837ccc34 100644
--- a/chrome/browser/chromeos/login/saml/saml_browsertest.cc
+++ b/chrome/browser/chromeos/login/saml/saml_browsertest.cc
@@ -285,7 +285,7 @@ class SamlTest : public InProcessBrowserTest {
host_resolver()->AddRule("*", "127.0.0.1");
}
- virtual void SetUpCommandLine(CommandLine* command_line) override {
+ virtual void SetUpCommandLine(base::CommandLine* command_line) override {
command_line->AppendSwitch(switches::kLoginManager);
command_line->AppendSwitch(switches::kForceLoginManagerInTests);
command_line->AppendSwitch(::switches::kDisableBackgroundNetworking);
@@ -664,7 +664,7 @@ class SAMLEnrollmentTest : public SamlTest,
// SamlTest:
void SetUp() override;
- void SetUpCommandLine(CommandLine* command_line) override;
+ void SetUpCommandLine(base::CommandLine* command_line) override;
void SetUpOnMainThread() override;
void StartSamlAndWaitForIdpPageLoad(const std::string& gaia_email) override;
@@ -705,7 +705,7 @@ void SAMLEnrollmentTest::SetUp() {
SamlTest::SetUp();
}
-void SAMLEnrollmentTest::SetUpCommandLine(CommandLine* command_line) {
+void SAMLEnrollmentTest::SetUpCommandLine(base::CommandLine* command_line) {
command_line->AppendSwitchASCII(policy::switches::kDeviceManagementUrl,
test_server_->GetServiceURL().spec());
command_line->AppendSwitch(policy::switches::kDisablePolicyKeyVerification);
« no previous file with comments | « chrome/browser/chromeos/login/resource_loader_browsertest.cc ('k') | chrome/browser/chromeos/login/screens/error_screen.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698