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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
50 const char kDisableQuickofficeComponentApp[] = | 50 const char kDisableQuickofficeComponentApp[] = |
51 "disable-quickoffice-component-app"; | 51 "disable-quickoffice-component-app"; |
52 | 52 |
53 // Disables volume adjust sound. | 53 // Disables volume adjust sound. |
54 const char kDisableVolumeAdjustSound[] = "disable-volume-adjust-sound"; | 54 const char kDisableVolumeAdjustSound[] = "disable-volume-adjust-sound"; |
55 | 55 |
56 // Disables notifications about captive portals in session. | 56 // Disables notifications about captive portals in session. |
57 const char kDisableNetworkPortalNotification[] = | 57 const char kDisableNetworkPortalNotification[] = |
58 "disable-network-portal-notification"; | 58 "disable-network-portal-notification"; |
59 | 59 |
60 // Enables overriding the path for the default echo component extension. | |
61 // Useful for testing. | |
62 const char kEchoExtensionPath[] = "echo-ext-path"; | |
63 | |
64 // Enables switching between different cellular carriers from the UI. | 60 // Enables switching between different cellular carriers from the UI. |
65 const char kEnableCarrierSwitching[] = "enable-carrier-switching"; | 61 const char kEnableCarrierSwitching[] = "enable-carrier-switching"; |
66 | 62 |
67 // Enables the next generation version of ChromeVox. Only valid with | 63 // Enables the next generation version of ChromeVox. Only valid with |
68 // use_chromevox_next=1 within your GYP_DEFINES. | 64 // use_chromevox_next=1 within your GYP_DEFINES. |
69 const char kEnableChromeVoxNext[] = "enable-chromevox-next"; | 65 const char kEnableChromeVoxNext[] = "enable-chromevox-next"; |
70 | 66 |
71 // Enables consumer management, which allows user to enroll, remotely lock and | 67 // Enables consumer management, which allows user to enroll, remotely lock and |
72 // locate the device. | 68 // locate the device. |
73 const char kEnableConsumerManagement[] = "enable-consumer-management"; | 69 const char kEnableConsumerManagement[] = "enable-consumer-management"; |
(...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
214 const char kEnableFirstRunUITransitions[] = "enable-first-run-ui-transitions"; | 210 const char kEnableFirstRunUITransitions[] = "enable-first-run-ui-transitions"; |
215 | 211 |
216 // Forces first-run UI to be shown for every login. | 212 // Forces first-run UI to be shown for every login. |
217 const char kForceFirstRunUI[] = "force-first-run-ui"; | 213 const char kForceFirstRunUI[] = "force-first-run-ui"; |
218 | 214 |
219 // Enables testing for auto update UI. | 215 // Enables testing for auto update UI. |
220 const char kTestAutoUpdateUI[] = "test-auto-update-ui"; | 216 const char kTestAutoUpdateUI[] = "test-auto-update-ui"; |
221 | 217 |
222 } // namespace switches | 218 } // namespace switches |
223 } // namespace chromeos | 219 } // namespace chromeos |
OLD | NEW |