Chromium Code Reviews| 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 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 71 // Disables notifications about captive portals in session. | 71 // Disables notifications about captive portals in session. |
| 72 const char kDisableNetworkPortalNotification[] = | 72 const char kDisableNetworkPortalNotification[] = |
| 73 "disable-network-portal-notification"; | 73 "disable-network-portal-notification"; |
| 74 | 74 |
| 75 // Enables switching between different cellular carriers from the UI. | 75 // Enables switching between different cellular carriers from the UI. |
| 76 const char kEnableCarrierSwitching[] = "enable-carrier-switching"; | 76 const char kEnableCarrierSwitching[] = "enable-carrier-switching"; |
| 77 | 77 |
| 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 import feature. | |
| 82 const char kEnableCloudImport[] = "enable-could-import"; | |
|
James Hawkins
2014/10/21 20:08:58
s/could/cloud/
Steve McKay
2014/10/21 20:13:31
Done.
| |
| 83 | |
| 81 // Enables consumer management, which allows user to enroll, remotely lock and | 84 // Enables consumer management, which allows user to enroll, remotely lock and |
| 82 // locate the device. | 85 // locate the device. |
| 83 const char kEnableConsumerManagement[] = "enable-consumer-management"; | 86 const char kEnableConsumerManagement[] = "enable-consumer-management"; |
| 84 | 87 |
| 85 // If this switch is set, Chrome OS login screen uses |EmbeddedSignin| endpoint | 88 // If this switch is set, Chrome OS login screen uses |EmbeddedSignin| endpoint |
| 86 // of GAIA. | 89 // of GAIA. |
| 87 const char kEnableEmbeddedSignin[] = "enable-embedded-signin"; | 90 const char kEnableEmbeddedSignin[] = "enable-embedded-signin"; |
| 88 | 91 |
| 89 // Enabled sharing assets for installed default apps. | 92 // Enabled sharing assets for installed default apps. |
| 90 const char kEnableExtensionAssetsSharing[] = "enable-extension-assets-sharing"; | 93 const char kEnableExtensionAssetsSharing[] = "enable-extension-assets-sharing"; |
| (...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 237 | 240 |
| 238 // Screenshot testing: specifies the directory where the golden screenshots are | 241 // Screenshot testing: specifies the directory where the golden screenshots are |
| 239 // stored. | 242 // stored. |
| 240 const char kGoldenScreenshotsDir[] = "golden-screenshots-dir"; | 243 const char kGoldenScreenshotsDir[] = "golden-screenshots-dir"; |
| 241 | 244 |
| 242 // Screenshot testing: specifies the directoru where artifacts will be stored. | 245 // Screenshot testing: specifies the directoru where artifacts will be stored. |
| 243 const char kArtifactsDir[] = "artifacts-dir"; | 246 const char kArtifactsDir[] = "artifacts-dir"; |
| 244 | 247 |
| 245 } // namespace switches | 248 } // namespace switches |
| 246 } // namespace chromeos | 249 } // namespace chromeos |
| OLD | NEW |