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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
43 | 43 |
44 // Disable policy-configured local accounts. | 44 // Disable policy-configured local accounts. |
45 const char kDisableLocalAccounts[] = "disable-local-accounts"; | 45 const char kDisableLocalAccounts[] = "disable-local-accounts"; |
46 | 46 |
47 // Avoid doing expensive animations upon login. | 47 // Avoid doing expensive animations upon login. |
48 const char kDisableLoginAnimations[] = "disable-login-animations"; | 48 const char kDisableLoginAnimations[] = "disable-login-animations"; |
49 | 49 |
50 // Disable new channel switcher UI. | 50 // Disable new channel switcher UI. |
51 const char kDisableNewChannelSwitcherUI[] = "disable-new-channel-switcher-ui"; | 51 const char kDisableNewChannelSwitcherUI[] = "disable-new-channel-switcher-ui"; |
52 | 52 |
| 53 // Disables new Kiosk UI when kiosk apps are represented as user pods. |
| 54 const char kDisableNewKioskUI[] = "disable-new-kiosk-ui"; |
| 55 |
53 // Disable Quickoffice component app thus handlers won't be registered so | 56 // Disable Quickoffice component app thus handlers won't be registered so |
54 // it will be possible to install another version as normal app for testing. | 57 // it will be possible to install another version as normal app for testing. |
55 const char kDisableQuickofficeComponentApp[] = | 58 const char kDisableQuickofficeComponentApp[] = |
56 "disable-quickoffice-component-app"; | 59 "disable-quickoffice-component-app"; |
57 | 60 |
58 // Disables fetching online CrOS EULA page, only static version is shown. | 61 // Disables fetching online CrOS EULA page, only static version is shown. |
59 const char kDisableOnlineEULA[] = "disable-cros-online-eula"; | 62 const char kDisableOnlineEULA[] = "disable-cros-online-eula"; |
60 | 63 |
61 // Avoid doing animations upon oobe. | 64 // Avoid doing animations upon oobe. |
62 const char kDisableOobeAnimation[] = "disable-oobe-animation"; | 65 const char kDisableOobeAnimation[] = "disable-oobe-animation"; |
(...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
214 const char kForceFirstRunUI[] = "force-first-run-ui"; | 217 const char kForceFirstRunUI[] = "force-first-run-ui"; |
215 | 218 |
216 // Enables testing for auto update UI. | 219 // Enables testing for auto update UI. |
217 const char kTestAutoUpdateUI[] = "test-auto-update-ui"; | 220 const char kTestAutoUpdateUI[] = "test-auto-update-ui"; |
218 | 221 |
219 // Enables features required for supervised user sync, | 222 // Enables features required for supervised user sync, |
220 const char kEnableSupervisedPasswordSync[] = "enable-supervised-password-sync"; | 223 const char kEnableSupervisedPasswordSync[] = "enable-supervised-password-sync"; |
221 | 224 |
222 } // namespace switches | 225 } // namespace switches |
223 } // namespace chromeos | 226 } // namespace chromeos |
OLD | NEW |