| 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 namespace chromeos { | 7 namespace chromeos { |
| 8 namespace switches { | 8 namespace switches { |
| 9 | 9 |
| 10 // Path for app's OEM manifest file. | 10 // Path for app's OEM manifest file. |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 78 // Enables the next generation version of ChromeVox. | 78 // Enables the next generation version of ChromeVox. |
| 79 const char kEnableChromeVoxNext[] = "enable-chromevox-next"; | 79 const char kEnableChromeVoxNext[] = "enable-chromevox-next"; |
| 80 | 80 |
| 81 // Enables cloud backup feature. | 81 // Enables cloud backup feature. |
| 82 const char kEnableCloudBackup[] = "enable-cloud-backup"; | 82 const char kEnableCloudBackup[] = "enable-cloud-backup"; |
| 83 | 83 |
| 84 // Enables consumer management, which allows user to enroll, remotely lock and | 84 // Enables consumer management, which allows user to enroll, remotely lock and |
| 85 // locate the device. | 85 // locate the device. |
| 86 const char kEnableConsumerManagement[] = "enable-consumer-management"; | 86 const char kEnableConsumerManagement[] = "enable-consumer-management"; |
| 87 | 87 |
| 88 // If this switch is set, the device cannot be remotely disabled by its owner. |
| 89 const char kDisableDeviceDisabling[] = "disable-device-disabling"; |
| 90 |
| 88 // If this switch is set, Chrome OS login screen uses |EmbeddedSignin| endpoint | 91 // If this switch is set, Chrome OS login screen uses |EmbeddedSignin| endpoint |
| 89 // of GAIA. | 92 // of GAIA. |
| 90 const char kEnableEmbeddedSignin[] = "enable-embedded-signin"; | 93 const char kEnableEmbeddedSignin[] = "enable-embedded-signin"; |
| 91 | 94 |
| 92 // Enabled sharing assets for installed default apps. | 95 // Enabled sharing assets for installed default apps. |
| 93 const char kEnableExtensionAssetsSharing[] = "enable-extension-assets-sharing"; | 96 const char kEnableExtensionAssetsSharing[] = "enable-extension-assets-sharing"; |
| 94 | 97 |
| 95 // Enables notifications about captive portals in session. | 98 // Enables notifications about captive portals in session. |
| 96 const char kEnableNetworkPortalNotification[] = | 99 const char kEnableNetworkPortalNotification[] = |
| 97 "enable-network-portal-notification"; | 100 "enable-network-portal-notification"; |
| (...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 240 | 243 |
| 241 // Screenshot testing: specifies the directory where the golden screenshots are | 244 // Screenshot testing: specifies the directory where the golden screenshots are |
| 242 // stored. | 245 // stored. |
| 243 const char kGoldenScreenshotsDir[] = "golden-screenshots-dir"; | 246 const char kGoldenScreenshotsDir[] = "golden-screenshots-dir"; |
| 244 | 247 |
| 245 // Screenshot testing: specifies the directoru where artifacts will be stored. | 248 // Screenshot testing: specifies the directoru where artifacts will be stored. |
| 246 const char kArtifactsDir[] = "artifacts-dir"; | 249 const char kArtifactsDir[] = "artifacts-dir"; |
| 247 | 250 |
| 248 } // namespace switches | 251 } // namespace switches |
| 249 } // namespace chromeos | 252 } // namespace chromeos |
| OLD | NEW |