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 22 matching lines...) Expand all Loading... |
33 // Disables wallpaper boot animation (except of OOBE case). | 33 // Disables wallpaper boot animation (except of OOBE case). |
34 const char kDisableBootAnimation[] = "disable-boot-animation"; | 34 const char kDisableBootAnimation[] = "disable-boot-animation"; |
35 | 35 |
36 // Disables reporting recently logged in users for enterprise-managed devices. | 36 // Disables reporting recently logged in users for enterprise-managed devices. |
37 const char kDisableEnterpriseUserReporting[] = | 37 const char kDisableEnterpriseUserReporting[] = |
38 "disable-enterprise-user-reporting"; | 38 "disable-enterprise-user-reporting"; |
39 | 39 |
40 // Disable Genius App and use the original Help App instead. | 40 // Disable Genius App and use the original Help App instead. |
41 const char kDisableGeniusApp[] = "disable-genius-app"; | 41 const char kDisableGeniusApp[] = "disable-genius-app"; |
42 | 42 |
43 // Disable to show the indicator about the IME (input method editor) mode | |
44 // on Chrome OS. | |
45 const char kDisableIMEModeIndicator[] = "disable-ime-mode-indicator"; | |
46 | |
47 // Disable policy-configured local accounts. | 43 // Disable policy-configured local accounts. |
48 const char kDisableLocalAccounts[] = "disable-local-accounts"; | 44 const char kDisableLocalAccounts[] = "disable-local-accounts"; |
49 | 45 |
50 // Avoid doing expensive animations upon login. | 46 // Avoid doing expensive animations upon login. |
51 const char kDisableLoginAnimations[] = "disable-login-animations"; | 47 const char kDisableLoginAnimations[] = "disable-login-animations"; |
52 | 48 |
53 // Disable new channel switcher UI. | 49 // Disable new channel switcher UI. |
54 const char kDisableNewChannelSwitcherUI[] = "disable-new-channel-switcher-ui"; | 50 const char kDisableNewChannelSwitcherUI[] = "disable-new-channel-switcher-ui"; |
55 | 51 |
56 // Disables new Kiosk UI when kiosk apps are represented as user pods. | 52 // Disables new Kiosk UI when kiosk apps are represented as user pods. |
(...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
218 const char kForceFirstRunUI[] = "force-first-run-ui"; | 214 const char kForceFirstRunUI[] = "force-first-run-ui"; |
219 | 215 |
220 // Enables testing for auto update UI. | 216 // Enables testing for auto update UI. |
221 const char kTestAutoUpdateUI[] = "test-auto-update-ui"; | 217 const char kTestAutoUpdateUI[] = "test-auto-update-ui"; |
222 | 218 |
223 // Enables features required for supervised user sync, | 219 // Enables features required for supervised user sync, |
224 const char kEnableSupervisedPasswordSync[] = "enable-supervised-password-sync"; | 220 const char kEnableSupervisedPasswordSync[] = "enable-supervised-password-sync"; |
225 | 221 |
226 } // namespace switches | 222 } // namespace switches |
227 } // namespace chromeos | 223 } // namespace chromeos |
OLD | NEW |