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

Unified Diff: components/signin/core/browser/signin_manager_base.cc

Issue 818103002: Make callers of CommandLine use it via the base:: namespace. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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: components/signin/core/browser/signin_manager_base.cc
diff --git a/components/signin/core/browser/signin_manager_base.cc b/components/signin/core/browser/signin_manager_base.cc
index 8ef39297ade8970fd666603f9b297ad5ef0aaf93..02cf48069ba1dc3a1ca1d8ef0eeeb87e6532df7e 100644
--- a/components/signin/core/browser/signin_manager_base.cc
+++ b/components/signin/core/browser/signin_manager_base.cc
@@ -36,7 +36,7 @@ void SigninManagerBase::Initialize(PrefService* local_state) {
// If the user is clearing the token service from the command line, then
// clear their login info also (not valid to be logged in without any
// tokens).
- CommandLine* cmd_line = CommandLine::ForCurrentProcess();
+ base::CommandLine* cmd_line = base::CommandLine::ForCurrentProcess();
if (cmd_line->HasSwitch(switches::kClearTokenService))
client_->GetPrefs()->ClearPref(prefs::kGoogleServicesUsername);

Powered by Google App Engine
This is Rietveld 408576698