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 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
110 // Power of the power-of-2 initial modulus that will be used by the | 110 // Power of the power-of-2 initial modulus that will be used by the |
111 // auto-enrollment client. E.g. "4" means the modulus will be 2^4 = 16. | 111 // auto-enrollment client. E.g. "4" means the modulus will be 2^4 = 16. |
112 const char kEnterpriseEnrollmentInitialModulus[] = | 112 const char kEnterpriseEnrollmentInitialModulus[] = |
113 "enterprise-enrollment-initial-modulus"; | 113 "enterprise-enrollment-initial-modulus"; |
114 | 114 |
115 // Power of the power-of-2 maximum modulus that will be used by the | 115 // Power of the power-of-2 maximum modulus that will be used by the |
116 // auto-enrollment client. | 116 // auto-enrollment client. |
117 const char kEnterpriseEnrollmentModulusLimit[] = | 117 const char kEnterpriseEnrollmentModulusLimit[] = |
118 "enterprise-enrollment-modulus-limit"; | 118 "enterprise-enrollment-modulus-limit"; |
119 | 119 |
| 120 // Don't create robot account on enrollment. Used when testing device |
| 121 // enrollment against YAPS or the Python test server. |
| 122 const char kEnterpriseEnrollmentSkipRobotAuth[] = |
| 123 "enterprise-enrollment-skip-robot-auth"; |
| 124 |
120 // Shows the selecting checkboxes in the Files.app. | 125 // Shows the selecting checkboxes in the Files.app. |
121 const char kFileManagerShowCheckboxes[] = "file-manager-show-checkboxes"; | 126 const char kFileManagerShowCheckboxes[] = "file-manager-show-checkboxes"; |
122 | 127 |
123 // Enables the webstore integration feature in the Files.app. | 128 // Enables the webstore integration feature in the Files.app. |
124 const char kFileManagerEnableWebstoreIntegration[] = | 129 const char kFileManagerEnableWebstoreIntegration[] = |
125 "file-manager-enable-webstore-integration"; | 130 "file-manager-enable-webstore-integration"; |
126 | 131 |
127 // Passed to Chrome the first time that it's run after the system boots. | 132 // Passed to Chrome the first time that it's run after the system boots. |
128 // Not passed on restart after sign out. | 133 // Not passed on restart after sign out. |
129 const char kFirstExecAfterBoot[] = "first-exec-after-boot"; | 134 const char kFirstExecAfterBoot[] = "first-exec-after-boot"; |
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
189 const char kEnableSamlSignin[] = "enable-saml-signin"; | 194 const char kEnableSamlSignin[] = "enable-saml-signin"; |
190 | 195 |
191 // Enables new first-run overlay UI. | 196 // Enables new first-run overlay UI. |
192 const char kEnableFirstRunUI[] = "enable-first-run-ui"; | 197 const char kEnableFirstRunUI[] = "enable-first-run-ui"; |
193 | 198 |
194 // Enables testing for auto update UI. | 199 // Enables testing for auto update UI. |
195 const char kTestAutoUpdateUI[] = "test-auto-update-ui"; | 200 const char kTestAutoUpdateUI[] = "test-auto-update-ui"; |
196 | 201 |
197 } // namespace switches | 202 } // namespace switches |
198 } // namespace chromeos | 203 } // namespace chromeos |
OLD | NEW |