| 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 |
| 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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 193 const char kEnableFirstRunUITransitions[] = "enable-first-run-ui-transitions"; | 194 const char kEnableFirstRunUITransitions[] = "enable-first-run-ui-transitions"; |
| 194 | 195 |
| 195 // Forces first-run UI to be shown for every login. | 196 // Forces first-run UI to be shown for every login. |
| 196 const char kForceFirstRunUI[] = "force-first-run-ui"; | 197 const char kForceFirstRunUI[] = "force-first-run-ui"; |
| 197 | 198 |
| 198 // Enables testing for auto update UI. | 199 // Enables testing for auto update UI. |
| 199 const char kTestAutoUpdateUI[] = "test-auto-update-ui"; | 200 const char kTestAutoUpdateUI[] = "test-auto-update-ui"; |
| 200 | 201 |
| 201 } // namespace switches | 202 } // namespace switches |
| 202 } // namespace chromeos | 203 } // namespace chromeos |
| OLD | NEW |