| 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 136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 147 | 147 |
| 148 // Enables natural scroll by default. | 148 // Enables natural scroll by default. |
| 149 const char kNaturalScrollDefault[] = "enable-natural-scroll-default"; | 149 const char kNaturalScrollDefault[] = "enable-natural-scroll-default"; |
| 150 | 150 |
| 151 // Skips all other OOBE pages after user login. | 151 // Skips all other OOBE pages after user login. |
| 152 const char kOobeSkipPostLogin[] = "oobe-skip-postlogin"; | 152 const char kOobeSkipPostLogin[] = "oobe-skip-postlogin"; |
| 153 | 153 |
| 154 // Interval at which we check for total time on OOBE. | 154 // Interval at which we check for total time on OOBE. |
| 155 const char kOobeTimerInterval[] = "oobe-timer-interval"; | 155 const char kOobeTimerInterval[] = "oobe-timer-interval"; |
| 156 | 156 |
| 157 // Indicates that a guest session has been started before OOBE completion. |
| 158 const char kOobeGuestSession[] = "oobe-guest-session"; |
| 159 |
| 157 // Specifies power stub behavior: | 160 // Specifies power stub behavior: |
| 158 // 'cycle=2' - Cycles power states every 2 seconds. | 161 // 'cycle=2' - Cycles power states every 2 seconds. |
| 159 // See FakeDBusThreadManager::ParsePowerCommandLineSwitch for full details. | 162 // See FakeDBusThreadManager::ParsePowerCommandLineSwitch for full details. |
| 160 const char kPowerStub[] = "power-stub"; | 163 const char kPowerStub[] = "power-stub"; |
| 161 | 164 |
| 162 // Specifies network stub behavior. If this switch is not specified, | 165 // Specifies network stub behavior. If this switch is not specified, |
| 163 // ethernet, wifi and vpn are enabled by default, and transitions occur | 166 // ethernet, wifi and vpn are enabled by default, and transitions occur |
| 164 // instantaneously. Multiple options can be comma separated (no spaces). | 167 // instantaneously. Multiple options can be comma separated (no spaces). |
| 165 // See FakeShillManagerClient::SetInitialNetworkState for implementation. | 168 // See FakeShillManagerClient::SetInitialNetworkState for implementation. |
| 166 // Examples: | 169 // Examples: |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 204 const char kForceFirstRunUI[] = "force-first-run-ui"; | 207 const char kForceFirstRunUI[] = "force-first-run-ui"; |
| 205 | 208 |
| 206 // Enables testing for auto update UI. | 209 // Enables testing for auto update UI. |
| 207 const char kTestAutoUpdateUI[] = "test-auto-update-ui"; | 210 const char kTestAutoUpdateUI[] = "test-auto-update-ui"; |
| 208 | 211 |
| 209 // Enables features required for supervised user sync, | 212 // Enables features required for supervised user sync, |
| 210 const char kEnableSupervisedPasswordSync[] = "enable-supervised-password-sync"; | 213 const char kEnableSupervisedPasswordSync[] = "enable-supervised-password-sync"; |
| 211 | 214 |
| 212 } // namespace switches | 215 } // namespace switches |
| 213 } // namespace chromeos | 216 } // namespace chromeos |
| OLD | NEW |