| 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() {
|
|
|