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 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
161 // Specifies a password to be used to login (along with login-user). | 161 // Specifies a password to be used to login (along with login-user). |
162 const char kLoginPassword[] = "login-password"; | 162 const char kLoginPassword[] = "login-password"; |
163 | 163 |
164 // Specifies the profile to use once a chromeos user is logged in. This is | 164 // Specifies the profile to use once a chromeos user is logged in. This is |
165 // required unless --multi-profile is set. | 165 // required unless --multi-profile is set. |
166 const char kLoginProfile[] = "login-profile"; | 166 const char kLoginProfile[] = "login-profile"; |
167 | 167 |
168 // Specifies the user which is already logged in. | 168 // Specifies the user which is already logged in. |
169 const char kLoginUser[] = "login-user"; | 169 const char kLoginUser[] = "login-user"; |
170 | 170 |
171 // Enables natural scroll by default. | |
172 const char kNaturalScrollDefault[] = "enable-natural-scroll-default"; | |
173 | |
174 // Skips all other OOBE pages after user login. | 171 // Skips all other OOBE pages after user login. |
175 const char kOobeSkipPostLogin[] = "oobe-skip-postlogin"; | 172 const char kOobeSkipPostLogin[] = "oobe-skip-postlogin"; |
176 | 173 |
177 // Interval at which we check for total time on OOBE. | 174 // Interval at which we check for total time on OOBE. |
178 const char kOobeTimerInterval[] = "oobe-timer-interval"; | 175 const char kOobeTimerInterval[] = "oobe-timer-interval"; |
179 | 176 |
180 // Indicates that a guest session has been started before OOBE completion. | 177 // Indicates that a guest session has been started before OOBE completion. |
181 const char kOobeGuestSession[] = "oobe-guest-session"; | 178 const char kOobeGuestSession[] = "oobe-guest-session"; |
182 | 179 |
183 // Specifies power stub behavior: | 180 // Specifies power stub behavior: |
(...skipping 30 matching lines...) Expand all Loading... |
214 const char kEnableFirstRunUITransitions[] = "enable-first-run-ui-transitions"; | 211 const char kEnableFirstRunUITransitions[] = "enable-first-run-ui-transitions"; |
215 | 212 |
216 // Forces first-run UI to be shown for every login. | 213 // Forces first-run UI to be shown for every login. |
217 const char kForceFirstRunUI[] = "force-first-run-ui"; | 214 const char kForceFirstRunUI[] = "force-first-run-ui"; |
218 | 215 |
219 // Enables testing for auto update UI. | 216 // Enables testing for auto update UI. |
220 const char kTestAutoUpdateUI[] = "test-auto-update-ui"; | 217 const char kTestAutoUpdateUI[] = "test-auto-update-ui"; |
221 | 218 |
222 } // namespace switches | 219 } // namespace switches |
223 } // namespace chromeos | 220 } // namespace chromeos |
OLD | NEW |