| 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 185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 196 // Disables rollback option on reset screen. | 196 // Disables rollback option on reset screen. |
| 197 const char kDisableRollbackOption[] = "disable-rollback-option"; | 197 const char kDisableRollbackOption[] = "disable-rollback-option"; |
| 198 | 198 |
| 199 // Disables experimental storage manager to manage local storage. | 199 // Disables experimental storage manager to manage local storage. |
| 200 const char kDisableStorageManager[] = "disable-storage-manager"; | 200 const char kDisableStorageManager[] = "disable-storage-manager"; |
| 201 | 201 |
| 202 // Disables SystemTimezoneAutomaticDetection policy. | 202 // Disables SystemTimezoneAutomaticDetection policy. |
| 203 const char kDisableSystemTimezoneAutomaticDetectionPolicy[] = | 203 const char kDisableSystemTimezoneAutomaticDetectionPolicy[] = |
| 204 "disable-system-timezone-automatic-detection"; | 204 "disable-system-timezone-automatic-detection"; |
| 205 | 205 |
| 206 // Disables automatic timezone update. | |
| 207 const char kDisableTimeZoneTrackingOption[] = | |
| 208 "disable-timezone-tracking-option"; | |
| 209 | |
| 210 // Disables volume adjust sound. | 206 // Disables volume adjust sound. |
| 211 const char kDisableVolumeAdjustSound[] = "disable-volume-adjust-sound"; | 207 const char kDisableVolumeAdjustSound[] = "disable-volume-adjust-sound"; |
| 212 | 208 |
| 213 // Disables wake on wifi features. | 209 // Disables wake on wifi features. |
| 214 const char kDisableWakeOnWifi[] = "disable-wake-on-wifi"; | 210 const char kDisableWakeOnWifi[] = "disable-wake-on-wifi"; |
| 215 | 211 |
| 216 // EAFE path to use for Easy bootstrapping. | 212 // EAFE path to use for Easy bootstrapping. |
| 217 const char kEafePath[] = "eafe-path"; | 213 const char kEafePath[] = "eafe-path"; |
| 218 | 214 |
| 219 // EAFE URL to use for Easy bootstrapping. | 215 // EAFE URL to use for Easy bootstrapping. |
| (...skipping 256 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 476 base::CommandLine* command_line = base::CommandLine::ForCurrentProcess(); | 472 base::CommandLine* command_line = base::CommandLine::ForCurrentProcess(); |
| 477 if (!command_line->HasSwitch(kTestCrosGaiaIdMigration)) | 473 if (!command_line->HasSwitch(kTestCrosGaiaIdMigration)) |
| 478 return false; | 474 return false; |
| 479 | 475 |
| 480 return command_line->GetSwitchValueASCII(kTestCrosGaiaIdMigration) == | 476 return command_line->GetSwitchValueASCII(kTestCrosGaiaIdMigration) == |
| 481 kTestCrosGaiaIdMigrationStarted; | 477 kTestCrosGaiaIdMigrationStarted; |
| 482 } | 478 } |
| 483 | 479 |
| 484 } // namespace switches | 480 } // namespace switches |
| 485 } // namespace chromeos | 481 } // namespace chromeos |
| OLD | NEW |