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 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
62 // Disables volume adjust sound. | 62 // Disables volume adjust sound. |
63 const char kDisableVolumeAdjustSound[] = "disable-volume-adjust-sound"; | 63 const char kDisableVolumeAdjustSound[] = "disable-volume-adjust-sound"; |
64 | 64 |
65 // Disables notifications about captive portals in session. | 65 // Disables notifications about captive portals in session. |
66 const char kDisableNetworkPortalNotification[] = | 66 const char kDisableNetworkPortalNotification[] = |
67 "disable-network-portal-notification"; | 67 "disable-network-portal-notification"; |
68 | 68 |
69 // Enables switching between different cellular carriers from the UI. | 69 // Enables switching between different cellular carriers from the UI. |
70 const char kEnableCarrierSwitching[] = "enable-carrier-switching"; | 70 const char kEnableCarrierSwitching[] = "enable-carrier-switching"; |
71 | 71 |
72 // Enables the next generation version of ChromeVox. Only valid with | 72 // Enables the next generation version of ChromeVox. |
73 // use_chromevox_next=1 within your GYP_DEFINES. | |
74 const char kEnableChromeVoxNext[] = "enable-chromevox-next"; | 73 const char kEnableChromeVoxNext[] = "enable-chromevox-next"; |
75 | 74 |
76 // Enables consumer management, which allows user to enroll, remotely lock and | 75 // Enables consumer management, which allows user to enroll, remotely lock and |
77 // locate the device. | 76 // locate the device. |
78 const char kEnableConsumerManagement[] = "enable-consumer-management"; | 77 const char kEnableConsumerManagement[] = "enable-consumer-management"; |
79 | 78 |
80 // Enable Easy sign-in. | 79 // Enable Easy sign-in. |
81 const char kEnableEasySignin[] = "enable-easy-signin"; | 80 const char kEnableEasySignin[] = "enable-easy-signin"; |
82 | 81 |
83 // If this switch is set, Chrome OS login screen uses |EmbeddedSignin| endpoint | 82 // If this switch is set, Chrome OS login screen uses |EmbeddedSignin| endpoint |
(...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
238 | 237 |
239 // Screenshot testing: specifies the directory where the golden screenshots are | 238 // Screenshot testing: specifies the directory where the golden screenshots are |
240 // stored. | 239 // stored. |
241 const char kGoldenScreenshotsDir[] = "golden-screenshots-dir"; | 240 const char kGoldenScreenshotsDir[] = "golden-screenshots-dir"; |
242 | 241 |
243 // Screenshot testing: specifies the directoru where artifacts will be stored. | 242 // Screenshot testing: specifies the directoru where artifacts will be stored. |
244 const char kArtifactsDir[] = "artifacts-dir"; | 243 const char kArtifactsDir[] = "artifacts-dir"; |
245 | 244 |
246 } // namespace switches | 245 } // namespace switches |
247 } // namespace chromeos | 246 } // namespace chromeos |
OLD | NEW |