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 208 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
219 const char kShowHostPairingDemo[] = "show-host-pairing-demo"; | 219 const char kShowHostPairingDemo[] = "show-host-pairing-demo"; |
220 | 220 |
221 // Sends test messages on first call to RequestUpdate (stub only). | 221 // Sends test messages on first call to RequestUpdate (stub only). |
222 const char kSmsTestMessages[] = "sms-test-messages"; | 222 const char kSmsTestMessages[] = "sms-test-messages"; |
223 | 223 |
224 // Indicates that a stub implementation of CrosSettings that stores settings in | 224 // Indicates that a stub implementation of CrosSettings that stores settings in |
225 // memory without signing should be used, treating current user as the owner. | 225 // memory without signing should be used, treating current user as the owner. |
226 // This option is for testing the chromeos build of chrome on the desktop only. | 226 // This option is for testing the chromeos build of chrome on the desktop only. |
227 const char kStubCrosSettings[] = "stub-cros-settings"; | 227 const char kStubCrosSettings[] = "stub-cros-settings"; |
228 | 228 |
229 // Disables SAML sigin support. | |
230 const char kDisableSamlSignin[] = "disable-saml-signin"; | |
231 | |
232 // Enables animated transitions during first-run tutorial. | 229 // Enables animated transitions during first-run tutorial. |
233 const char kEnableFirstRunUITransitions[] = "enable-first-run-ui-transitions"; | 230 const char kEnableFirstRunUITransitions[] = "enable-first-run-ui-transitions"; |
234 | 231 |
235 // Forces first-run UI to be shown for every login. | 232 // Forces first-run UI to be shown for every login. |
236 const char kForceFirstRunUI[] = "force-first-run-ui"; | 233 const char kForceFirstRunUI[] = "force-first-run-ui"; |
237 | 234 |
238 // Enables testing for auto update UI. | 235 // Enables testing for auto update UI. |
239 const char kTestAutoUpdateUI[] = "test-auto-update-ui"; | 236 const char kTestAutoUpdateUI[] = "test-auto-update-ui"; |
240 | 237 |
241 } // namespace switches | 238 } // namespace switches |
242 } // namespace chromeos | 239 } // namespace chromeos |
OLD | NEW |