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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
49 | 49 |
50 // Disable policy-configured local accounts. | 50 // Disable policy-configured local accounts. |
51 const char kDisableLocalAccounts[] = "disable-local-accounts"; | 51 const char kDisableLocalAccounts[] = "disable-local-accounts"; |
52 | 52 |
53 // Avoid doing expensive animations upon login. | 53 // Avoid doing expensive animations upon login. |
54 const char kDisableLoginAnimations[] = "disable-login-animations"; | 54 const char kDisableLoginAnimations[] = "disable-login-animations"; |
55 | 55 |
56 // Disable new channel switcher UI. | 56 // Disable new channel switcher UI. |
57 const char kDisableNewChannelSwitcherUI[] = "disable-new-channel-switcher-ui"; | 57 const char kDisableNewChannelSwitcherUI[] = "disable-new-channel-switcher-ui"; |
58 | 58 |
| 59 // Disables new Kiosk UI when kiosk apps are represented as user pods. |
| 60 const char kDisableNewKioskUI[] = "disable-new-kiosk-ui"; |
| 61 |
59 // Disable Quickoffice component app thus handlers won't be registered so | 62 // Disable Quickoffice component app thus handlers won't be registered so |
60 // it will be possible to install another version as normal app for testing. | 63 // it will be possible to install another version as normal app for testing. |
61 const char kDisableQuickofficeComponentApp[] = | 64 const char kDisableQuickofficeComponentApp[] = |
62 "disable-quickoffice-component-app"; | 65 "disable-quickoffice-component-app"; |
63 | 66 |
64 // Disables volume adjust sound. | 67 // Disables volume adjust sound. |
65 const char kDisableVolumeAdjustSound[] = "disable-volume-adjust-sound"; | 68 const char kDisableVolumeAdjustSound[] = "disable-volume-adjust-sound"; |
66 | 69 |
67 // Disables fetching online CrOS EULA page, only static version is shown. | 70 // Disables fetching online CrOS EULA page, only static version is shown. |
68 const char kDisableOnlineEULA[] = "disable-cros-online-eula"; | 71 const char kDisableOnlineEULA[] = "disable-cros-online-eula"; |
(...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
223 const char kForceFirstRunUI[] = "force-first-run-ui"; | 226 const char kForceFirstRunUI[] = "force-first-run-ui"; |
224 | 227 |
225 // Enables testing for auto update UI. | 228 // Enables testing for auto update UI. |
226 const char kTestAutoUpdateUI[] = "test-auto-update-ui"; | 229 const char kTestAutoUpdateUI[] = "test-auto-update-ui"; |
227 | 230 |
228 // Enables features required for supervised user sync, | 231 // Enables features required for supervised user sync, |
229 const char kEnableSupervisedPasswordSync[] = "enable-supervised-password-sync"; | 232 const char kEnableSupervisedPasswordSync[] = "enable-supervised-password-sync"; |
230 | 233 |
231 } // namespace switches | 234 } // namespace switches |
232 } // namespace chromeos | 235 } // namespace chromeos |
OLD | NEW |