Chromium Code Reviews| 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 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 127 | 127 |
| 128 // Allows override of oobe for testing - goes directly to the login screen. | 128 // Allows override of oobe for testing - goes directly to the login screen. |
| 129 const char kLoginScreen[] = "login-screen"; | 129 const char kLoginScreen[] = "login-screen"; |
| 130 | 130 |
| 131 // Enables Chrome-as-a-login-manager behavior. | 131 // Enables Chrome-as-a-login-manager behavior. |
| 132 const char kLoginManager[] = "login-manager"; | 132 const char kLoginManager[] = "login-manager"; |
| 133 | 133 |
| 134 // Specifies a password to be used to login (along with login-user). | 134 // Specifies a password to be used to login (along with login-user). |
| 135 const char kLoginPassword[] = "login-password"; | 135 const char kLoginPassword[] = "login-password"; |
| 136 | 136 |
| 137 // Specifies the profile to use once a chromeos user is logged in. | 137 // Specifies the profile to use once a chromeos user is logged in. This is |
|
bshe
2014/04/02 15:11:10
nit: One space before "This is..."
Thiemo Nagel
2014/04/02 15:39:56
Done.
| |
| 138 // required unless --multi-profile is set. | |
| 138 const char kLoginProfile[] = "login-profile"; | 139 const char kLoginProfile[] = "login-profile"; |
| 139 | 140 |
| 140 // Specifies the user which is already logged in. | 141 // Specifies the user which is already logged in. |
| 141 const char kLoginUser[] = "login-user"; | 142 const char kLoginUser[] = "login-user"; |
| 142 | 143 |
| 143 // Enables natural scroll by default. | 144 // Enables natural scroll by default. |
| 144 const char kNaturalScrollDefault[] = "enable-natural-scroll-default"; | 145 const char kNaturalScrollDefault[] = "enable-natural-scroll-default"; |
| 145 | 146 |
| 146 // Skips all other OOBE pages after user login. | 147 // Skips all other OOBE pages after user login. |
| 147 const char kOobeSkipPostLogin[] = "oobe-skip-postlogin"; | 148 const char kOobeSkipPostLogin[] = "oobe-skip-postlogin"; |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 202 const char kForceFirstRunUI[] = "force-first-run-ui"; | 203 const char kForceFirstRunUI[] = "force-first-run-ui"; |
| 203 | 204 |
| 204 // Enables testing for auto update UI. | 205 // Enables testing for auto update UI. |
| 205 const char kTestAutoUpdateUI[] = "test-auto-update-ui"; | 206 const char kTestAutoUpdateUI[] = "test-auto-update-ui"; |
| 206 | 207 |
| 207 // Enables features required for supervised user sync, | 208 // Enables features required for supervised user sync, |
| 208 const char kEnableSupervisedPasswordSync[] = "enable-supervised-password-sync"; | 209 const char kEnableSupervisedPasswordSync[] = "enable-supervised-password-sync"; |
| 209 | 210 |
| 210 } // namespace switches | 211 } // namespace switches |
| 211 } // namespace chromeos | 212 } // namespace chromeos |
| OLD | NEW |