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 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
178 | 178 |
179 // Specifies the user which is already logged in. | 179 // Specifies the user which is already logged in. |
180 const char kLoginUser[] = "login-user"; | 180 const char kLoginUser[] = "login-user"; |
181 | 181 |
182 // Enables natural scroll by default. | 182 // Enables natural scroll by default. |
183 const char kNaturalScrollDefault[] = "enable-natural-scroll-default"; | 183 const char kNaturalScrollDefault[] = "enable-natural-scroll-default"; |
184 | 184 |
185 // Skips all other OOBE pages after user login. | 185 // Skips all other OOBE pages after user login. |
186 const char kOobeSkipPostLogin[] = "oobe-skip-postlogin"; | 186 const char kOobeSkipPostLogin[] = "oobe-skip-postlogin"; |
187 | 187 |
| 188 // Disable GAIA services such as enrollment and OAuth session restore. Used by |
| 189 // 'fake' telemetry login. |
| 190 const char kDisableGaiaServices[] = "disable-gaia-services"; |
| 191 |
188 // Interval at which we check for total time on OOBE. | 192 // Interval at which we check for total time on OOBE. |
189 const char kOobeTimerInterval[] = "oobe-timer-interval"; | 193 const char kOobeTimerInterval[] = "oobe-timer-interval"; |
190 | 194 |
191 // Indicates that a guest session has been started before OOBE completion. | 195 // Indicates that a guest session has been started before OOBE completion. |
192 const char kOobeGuestSession[] = "oobe-guest-session"; | 196 const char kOobeGuestSession[] = "oobe-guest-session"; |
193 | 197 |
194 // Specifies power stub behavior: | 198 // Specifies power stub behavior: |
195 // 'cycle=2' - Cycles power states every 2 seconds. | 199 // 'cycle=2' - Cycles power states every 2 seconds. |
196 // See FakeDBusThreadManager::ParsePowerCommandLineSwitch for full details. | 200 // See FakeDBusThreadManager::ParsePowerCommandLineSwitch for full details. |
197 const char kPowerStub[] = "power-stub"; | 201 const char kPowerStub[] = "power-stub"; |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
233 const char kEnableFirstRunUITransitions[] = "enable-first-run-ui-transitions"; | 237 const char kEnableFirstRunUITransitions[] = "enable-first-run-ui-transitions"; |
234 | 238 |
235 // Forces first-run UI to be shown for every login. | 239 // Forces first-run UI to be shown for every login. |
236 const char kForceFirstRunUI[] = "force-first-run-ui"; | 240 const char kForceFirstRunUI[] = "force-first-run-ui"; |
237 | 241 |
238 // Enables testing for auto update UI. | 242 // Enables testing for auto update UI. |
239 const char kTestAutoUpdateUI[] = "test-auto-update-ui"; | 243 const char kTestAutoUpdateUI[] = "test-auto-update-ui"; |
240 | 244 |
241 } // namespace switches | 245 } // namespace switches |
242 } // namespace chromeos | 246 } // namespace chromeos |
OLD | NEW |