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

Unified Diff: chrome/browser/invalidation/profile_invalidation_provider_factory_browsertest.cc

Issue 816403003: 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/invalidation/profile_invalidation_provider_factory_browsertest.cc
diff --git a/chrome/browser/invalidation/profile_invalidation_provider_factory_browsertest.cc b/chrome/browser/invalidation/profile_invalidation_provider_factory_browsertest.cc
index 1745e2e9bd3f0e61c6dc34a9edbef3901c6696ce..161d37c402cba5f6127a7991365de233bb44a111 100644
--- a/chrome/browser/invalidation/profile_invalidation_provider_factory_browsertest.cc
+++ b/chrome/browser/invalidation/profile_invalidation_provider_factory_browsertest.cc
@@ -52,7 +52,7 @@ class ProfileInvalidationProviderFactoryLoginScreenBrowserTest
ProfileInvalidationProviderFactoryLoginScreenBrowserTest();
virtual ~ProfileInvalidationProviderFactoryLoginScreenBrowserTest();
- virtual void SetUpCommandLine(CommandLine* command_line) override;
+ virtual void SetUpCommandLine(base::CommandLine* command_line) override;
private:
DISALLOW_COPY_AND_ASSIGN(
@@ -68,7 +68,7 @@ ProfileInvalidationProviderFactoryLoginScreenBrowserTest::
}
void ProfileInvalidationProviderFactoryLoginScreenBrowserTest::SetUpCommandLine(
- CommandLine* command_line) {
+ base::CommandLine* command_line) {
command_line->AppendSwitch(chromeos::switches::kLoginManager);
command_line->AppendSwitchASCII(chromeos::switches::kLoginProfile, "user");
}
@@ -88,7 +88,7 @@ class ProfileInvalidationProviderFactoryGuestBrowserTest
ProfileInvalidationProviderFactoryGuestBrowserTest();
virtual ~ProfileInvalidationProviderFactoryGuestBrowserTest();
- virtual void SetUpCommandLine(CommandLine* command_line) override;
+ virtual void SetUpCommandLine(base::CommandLine* command_line) override;
private:
DISALLOW_COPY_AND_ASSIGN(ProfileInvalidationProviderFactoryGuestBrowserTest);
@@ -103,7 +103,7 @@ ProfileInvalidationProviderFactoryGuestBrowserTest::
}
void ProfileInvalidationProviderFactoryGuestBrowserTest::SetUpCommandLine(
- CommandLine* command_line) {
+ base::CommandLine* command_line) {
command_line->AppendSwitch(chromeos::switches::kGuestSession);
command_line->AppendSwitch(::switches::kIncognito);
command_line->AppendSwitchASCII(chromeos::switches::kLoginProfile, "user");
« no previous file with comments | « chrome/browser/intranet_redirect_detector.cc ('k') | chrome/browser/invalidation/ticl_profile_settings_provider.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698