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

Unified Diff: chrome/browser/chromeos/login/wizard_controller.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/wizard_controller.cc
diff --git a/chrome/browser/chromeos/login/wizard_controller.cc b/chrome/browser/chromeos/login/wizard_controller.cc
index 998f0f0cecea8189337d9b22131418cf65a912c8..8b8bc36d77a8ef683e333be3cbc5de41c2f72560 100644
--- a/chrome/browser/chromeos/login/wizard_controller.cc
+++ b/chrome/browser/chromeos/login/wizard_controller.cc
@@ -106,8 +106,8 @@ const char *kResumableScreens[] = {
// Checks flag for HID-detection screen show.
bool CanShowHIDDetectionScreen() {
- return !CommandLine::ForCurrentProcess()->HasSwitch(
- chromeos::switches::kDisableHIDDetectionOnOOBE);
+ return !base::CommandLine::ForCurrentProcess()->HasSwitch(
+ chromeos::switches::kDisableHIDDetectionOnOOBE);
}
bool IsResumableScreen(const std::string& screen) {
@@ -1252,8 +1252,9 @@ bool WizardController::SetOnTimeZoneResolvedForTesting(
bool WizardController::IsHostPairingOobe() const {
return IsRemoraRequisition() &&
- (CommandLine::ForCurrentProcess()->HasSwitch(switches::kHostPairingOobe) ||
- shark_controller_detected_);
+ (base::CommandLine::ForCurrentProcess()->HasSwitch(
+ switches::kHostPairingOobe) ||
+ shark_controller_detected_);
}
void WizardController::MaybeStartListeningForSharkConnection() {

Powered by Google App Engine
This is Rietveld 408576698