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 182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
193 const char kSmsTestMessages[] = "sms-test-messages"; | 193 const char kSmsTestMessages[] = "sms-test-messages"; |
194 | 194 |
195 // Indicates that a stub implementation of CrosSettings that stores settings in | 195 // Indicates that a stub implementation of CrosSettings that stores settings in |
196 // memory without signing should be used, treating current user as the owner. | 196 // memory without signing should be used, treating current user as the owner. |
197 // This option is for testing the chromeos build of chrome on the desktop only. | 197 // This option is for testing the chromeos build of chrome on the desktop only. |
198 const char kStubCrosSettings[] = "stub-cros-settings"; | 198 const char kStubCrosSettings[] = "stub-cros-settings"; |
199 | 199 |
200 // Disables SAML sigin support. | 200 // Disables SAML sigin support. |
201 const char kDisableSamlSignin[] = "disable-saml-signin"; | 201 const char kDisableSamlSignin[] = "disable-saml-signin"; |
202 | 202 |
203 // Disables new first-run overlay UI. | |
204 const char kDisableFirstRunUI[] = "disable-first-run-ui"; | |
205 | |
206 // Enables animated transitions during first-run tutorial. | 203 // Enables animated transitions during first-run tutorial. |
207 const char kEnableFirstRunUITransitions[] = "enable-first-run-ui-transitions"; | 204 const char kEnableFirstRunUITransitions[] = "enable-first-run-ui-transitions"; |
208 | 205 |
209 // Forces first-run UI to be shown for every login. | 206 // Forces first-run UI to be shown for every login. |
210 const char kForceFirstRunUI[] = "force-first-run-ui"; | 207 const char kForceFirstRunUI[] = "force-first-run-ui"; |
211 | 208 |
212 // Enables testing for auto update UI. | 209 // Enables testing for auto update UI. |
213 const char kTestAutoUpdateUI[] = "test-auto-update-ui"; | 210 const char kTestAutoUpdateUI[] = "test-auto-update-ui"; |
214 | 211 |
215 } // namespace switches | 212 } // namespace switches |
216 } // namespace chromeos | 213 } // namespace chromeos |
OLD | NEW |