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 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
60 const char kDisableQuickofficeComponentApp[] = | 60 const char kDisableQuickofficeComponentApp[] = |
61 "disable-quickoffice-component-app"; | 61 "disable-quickoffice-component-app"; |
62 | 62 |
63 // Disables volume adjust sound. | 63 // Disables volume adjust sound. |
64 const char kDisableVolumeAdjustSound[] = "disable-volume-adjust-sound"; | 64 const char kDisableVolumeAdjustSound[] = "disable-volume-adjust-sound"; |
65 | 65 |
66 // Disables notifications about captive portals in session. | 66 // Disables notifications about captive portals in session. |
67 const char kDisableNetworkPortalNotification[] = | 67 const char kDisableNetworkPortalNotification[] = |
68 "disable-network-portal-notification"; | 68 "disable-network-portal-notification"; |
69 | 69 |
70 // Disables fetching online CrOS EULA page, only static version is shown. | |
71 const char kDisableOnlineEULA[] = "disable-cros-online-eula"; | |
72 | |
73 // Avoid doing animations upon oobe. | 70 // Avoid doing animations upon oobe. |
74 const char kDisableOobeAnimation[] = "disable-oobe-animation"; | 71 const char kDisableOobeAnimation[] = "disable-oobe-animation"; |
75 | 72 |
76 // Disables portal detection and network error handling before auto | 73 // Disables portal detection and network error handling before auto |
77 // update. | 74 // update. |
78 const char kDisableOOBEBlockingUpdate[] = | 75 const char kDisableOOBEBlockingUpdate[] = |
79 "disable-oobe-blocking-update"; | 76 "disable-oobe-blocking-update"; |
80 | 77 |
81 // Enables overriding the path for the default echo component extension. | 78 // Enables overriding the path for the default echo component extension. |
82 // Useful for testing. | 79 // Useful for testing. |
(...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
221 const char kForceFirstRunUI[] = "force-first-run-ui"; | 218 const char kForceFirstRunUI[] = "force-first-run-ui"; |
222 | 219 |
223 // Enables testing for auto update UI. | 220 // Enables testing for auto update UI. |
224 const char kTestAutoUpdateUI[] = "test-auto-update-ui"; | 221 const char kTestAutoUpdateUI[] = "test-auto-update-ui"; |
225 | 222 |
226 // Enables features required for supervised user sync, | 223 // Enables features required for supervised user sync, |
227 const char kEnableSupervisedPasswordSync[] = "enable-supervised-password-sync"; | 224 const char kEnableSupervisedPasswordSync[] = "enable-supervised-password-sync"; |
228 | 225 |
229 } // namespace switches | 226 } // namespace switches |
230 } // namespace chromeos | 227 } // namespace chromeos |
OLD | NEW |