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 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
150 | 150 |
151 // Specifies a password to be used to login (along with login-user). | 151 // Specifies a password to be used to login (along with login-user). |
152 const char kLoginPassword[] = "login-password"; | 152 const char kLoginPassword[] = "login-password"; |
153 | 153 |
154 // Specifies the profile to use once a chromeos user is logged in. | 154 // Specifies the profile to use once a chromeos user is logged in. |
155 const char kLoginProfile[] = "login-profile"; | 155 const char kLoginProfile[] = "login-profile"; |
156 | 156 |
157 // Specifies the user which is already logged in. | 157 // Specifies the user which is already logged in. |
158 const char kLoginUser[] = "login-user"; | 158 const char kLoginUser[] = "login-user"; |
159 | 159 |
| 160 // Enables natural scroll by default. |
| 161 const char kNaturalScrollDefault[] = "enable-natural-scroll-default"; |
| 162 |
160 // Skips all other OOBE pages after user login. | 163 // Skips all other OOBE pages after user login. |
161 const char kOobeSkipPostLogin[] = "oobe-skip-postlogin"; | 164 const char kOobeSkipPostLogin[] = "oobe-skip-postlogin"; |
162 | 165 |
163 // Skips the machine hwid check. Useful for running in VMs because they have no | 166 // Skips the machine hwid check. Useful for running in VMs because they have no |
164 // hwid. | 167 // hwid. |
165 const char kSkipHWIDCheck[] = "skip-hwid-check"; | 168 const char kSkipHWIDCheck[] = "skip-hwid-check"; |
166 | 169 |
167 // Sends test messages on first call to RequestUpdate (stub only). | 170 // Sends test messages on first call to RequestUpdate (stub only). |
168 const char kSmsTestMessages[] = "sms-test-messages"; | 171 const char kSmsTestMessages[] = "sms-test-messages"; |
169 | 172 |
170 // Indicates that a stub implementation of CrosSettings that stores settings in | 173 // Indicates that a stub implementation of CrosSettings that stores settings in |
171 // memory without signing should be used, treating current user as the owner. | 174 // memory without signing should be used, treating current user as the owner. |
172 // This option is for testing the chromeos build of chrome on the desktop only. | 175 // This option is for testing the chromeos build of chrome on the desktop only. |
173 const char kStubCrosSettings[] = "stub-cros-settings"; | 176 const char kStubCrosSettings[] = "stub-cros-settings"; |
174 | 177 |
175 // Disables user image sync. | 178 // Disables user image sync. |
176 const char kDisableUserImageSync[] = "disable-user-image-sync"; | 179 const char kDisableUserImageSync[] = "disable-user-image-sync"; |
177 | 180 |
178 // Enables SAML sigin support. | 181 // Enables SAML sigin support. |
179 const char kEnableSamlSignin[] = "enable-saml-signin"; | 182 const char kEnableSamlSignin[] = "enable-saml-signin"; |
180 | 183 |
181 // Enables new first-run overlay UI. | 184 // Enables new first-run overlay UI. |
182 const char kEnableFirstRunUI[] = "enable-first-run-ui"; | 185 const char kEnableFirstRunUI[] = "enable-first-run-ui"; |
183 | 186 |
184 // Enables testing for auto update UI. | 187 // Enables testing for auto update UI. |
185 const char kTestAutoUpdateUI[] = "test-auto-update-ui"; | 188 const char kTestAutoUpdateUI[] = "test-auto-update-ui"; |
186 | 189 |
187 } // namespace switches | 190 } // namespace switches |
188 } // namespace chromeos | 191 } // namespace chromeos |
OLD | NEW |