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

Unified Diff: chrome/browser/ui/sync/one_click_signin_sync_starter_unittest.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/ui/sync/one_click_signin_sync_starter_unittest.cc
diff --git a/chrome/browser/ui/sync/one_click_signin_sync_starter_unittest.cc b/chrome/browser/ui/sync/one_click_signin_sync_starter_unittest.cc
index 6d05b0a46cd49e80351371fb2af2725d51291b25..10b5228858ce2997508d91925f1580f078b14860 100644
--- a/chrome/browser/ui/sync/one_click_signin_sync_starter_unittest.cc
+++ b/chrome/browser/ui/sync/one_click_signin_sync_starter_unittest.cc
@@ -34,7 +34,8 @@ class OneClickSigninSyncStarterTest : public ChromeRenderViewHostTestHarness {
ChromeRenderViewHostTestHarness::SetUp();
// Disable sync to simplify the creation of a OneClickSigninSyncStarter.
- CommandLine::ForCurrentProcess()->AppendSwitch(switches::kDisableSync);
+ base::CommandLine::ForCurrentProcess()->AppendSwitch(
+ switches::kDisableSync);
SigninManagerBase* signin_manager = static_cast<FakeSigninManager*>(
SigninManagerFactory::GetForProfile(profile()));

Powered by Google App Engine
This is Rietveld 408576698