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

Unified Diff: chrome/browser/supervised_user/supervised_user_registration_utility.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/supervised_user/supervised_user_registration_utility.cc
diff --git a/chrome/browser/supervised_user/supervised_user_registration_utility.cc b/chrome/browser/supervised_user/supervised_user_registration_utility.cc
index 16de28f91ca9662b03f91f7698f765a6e24d2fda..07204a797e2efc686498c907cebd24bff32b0e6c 100644
--- a/chrome/browser/supervised_user/supervised_user_registration_utility.cc
+++ b/chrome/browser/supervised_user/supervised_user_registration_utility.cc
@@ -363,7 +363,7 @@ void SupervisedUserRegistrationUtilityImpl::OnReceivedToken(
}
void SupervisedUserRegistrationUtilityImpl::CompleteRegistrationIfReady() {
- bool skip_check = CommandLine::ForCurrentProcess()->HasSwitch(
+ bool skip_check = base::CommandLine::ForCurrentProcess()->HasSwitch(
switches::kNoSupervisedUserAcknowledgmentCheck);
if (!pending_supervised_user_acknowledged_ && !skip_check)

Powered by Google App Engine
This is Rietveld 408576698