| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "chromeos/chromeos_switches.h" | 5 #include "chromeos/chromeos_switches.h" |
| 6 | 6 |
| 7 #include <string> | 7 #include <string> |
| 8 | 8 |
| 9 #include "base/command_line.h" | 9 #include "base/command_line.h" |
| 10 #include "base/metrics/field_trial.h" | 10 #include "base/metrics/field_trial.h" |
| (...skipping 286 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 297 const char kEnableTouchSupportForScreenMagnifier[] = | 297 const char kEnableTouchSupportForScreenMagnifier[] = |
| 298 "enable-touch-support-for-screen-magnifier"; | 298 "enable-touch-support-for-screen-magnifier"; |
| 299 | 299 |
| 300 // Enables the chromecast support for video player app. | 300 // Enables the chromecast support for video player app. |
| 301 const char kEnableVideoPlayerChromecastSupport[] = | 301 const char kEnableVideoPlayerChromecastSupport[] = |
| 302 "enable-video-player-chromecast-support"; | 302 "enable-video-player-chromecast-support"; |
| 303 | 303 |
| 304 // Enables the VoiceInteraction support. | 304 // Enables the VoiceInteraction support. |
| 305 const char kEnableVoiceInteraction[] = "enable-voice-interaction"; | 305 const char kEnableVoiceInteraction[] = "enable-voice-interaction"; |
| 306 | 306 |
| 307 // Enables zip archiver. |
| 308 const char kEnableZipArchiverOnFileManager[] = |
| 309 "enable-zip-archiver-on-file-manager"; |
| 310 |
| 307 // Disables ARC for managed accounts. | 311 // Disables ARC for managed accounts. |
| 308 const char kEnterpriseDisableArc[] = "enterprise-disable-arc"; | 312 const char kEnterpriseDisableArc[] = "enterprise-disable-arc"; |
| 309 | 313 |
| 310 // Whether to enable forced enterprise re-enrollment. | 314 // Whether to enable forced enterprise re-enrollment. |
| 311 const char kEnterpriseEnableForcedReEnrollment[] = | 315 const char kEnterpriseEnableForcedReEnrollment[] = |
| 312 "enterprise-enable-forced-re-enrollment"; | 316 "enterprise-enable-forced-re-enrollment"; |
| 313 | 317 |
| 314 // Enables the zero-touch enterprise enrollment flow. | 318 // Enables the zero-touch enterprise enrollment flow. |
| 315 const char kEnterpriseEnableZeroTouchEnrollment[] = | 319 const char kEnterpriseEnableZeroTouchEnrollment[] = |
| 316 "enterprise-enable-zero-touch-enrollment"; | 320 "enterprise-enable-zero-touch-enrollment"; |
| (...skipping 198 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 515 return command_line->GetSwitchValueASCII(kTestCrosGaiaIdMigration) == | 519 return command_line->GetSwitchValueASCII(kTestCrosGaiaIdMigration) == |
| 516 kTestCrosGaiaIdMigrationStarted; | 520 kTestCrosGaiaIdMigrationStarted; |
| 517 } | 521 } |
| 518 | 522 |
| 519 bool IsCellularFirstDevice() { | 523 bool IsCellularFirstDevice() { |
| 520 return base::CommandLine::ForCurrentProcess()->HasSwitch(kCellularFirst); | 524 return base::CommandLine::ForCurrentProcess()->HasSwitch(kCellularFirst); |
| 521 } | 525 } |
| 522 | 526 |
| 523 } // namespace switches | 527 } // namespace switches |
| 524 } // namespace chromeos | 528 } // namespace chromeos |
| OLD | NEW |