| 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 // Enables Chrome-as-a-login-manager behavior. | 151 // Enables Chrome-as-a-login-manager behavior. |
| 152 const char kLoginManager[] = "login-manager"; | 152 const char kLoginManager[] = "login-manager"; |
| 153 | 153 |
| 154 // Specifies a password to be used to login (along with login-user). | 154 // Specifies a password to be used to login (along with login-user). |
| 155 const char kLoginPassword[] = "login-password"; | 155 const char kLoginPassword[] = "login-password"; |
| 156 | 156 |
| 157 // Specifies the profile to use once a chromeos user is logged in. | 157 // Specifies the profile to use once a chromeos user is logged in. |
| 158 const char kLoginProfile[] = "login-profile"; | 158 const char kLoginProfile[] = "login-profile"; |
| 159 | 159 |
| 160 // Allows to override the first login screen. The value should be the name of | |
| 161 // the first login screen to show (see | |
| 162 // chrome/browser/chromeos/login/login_wizard_view.cc for actual names). | |
| 163 // Ignored if kLoginManager is not specified. TODO(avayvod): Remove when the | |
| 164 // switch is no longer needed for testing. | |
| 165 const char kLoginScreen[] = "login-screen"; | |
| 166 | |
| 167 // Controls the initial login screen size. Pass width,height. | |
| 168 const char kLoginScreenSize[] = "login-screen-size"; | |
| 169 | |
| 170 // Specifies the user which is already logged in. | 160 // Specifies the user which is already logged in. |
| 171 const char kLoginUser[] = "login-user"; | 161 const char kLoginUser[] = "login-user"; |
| 172 | 162 |
| 173 // Enables natural scroll by default. | 163 // Enables natural scroll by default. |
| 174 const char kNaturalScrollDefault[] = "enable-natural-scroll-default"; | 164 const char kNaturalScrollDefault[] = "enable-natural-scroll-default"; |
| 175 | 165 |
| 176 // Disables tab discard in low memory conditions, a feature which silently | 166 // Disables tab discard in low memory conditions, a feature which silently |
| 177 // closes inactive tabs to free memory and to attempt to avoid the kernel's | 167 // closes inactive tabs to free memory and to attempt to avoid the kernel's |
| 178 // out-of-memory process killer. | 168 // out-of-memory process killer. |
| 179 const char kNoDiscardTabs[] = "no-discard-tabs"; | 169 const char kNoDiscardTabs[] = "no-discard-tabs"; |
| (...skipping 11 matching lines...) Expand all Loading... |
| 191 // This option is for testing the chromeos build of chrome on the desktop only. | 181 // This option is for testing the chromeos build of chrome on the desktop only. |
| 192 const char kStubCrosSettings[] = "stub-cros-settings"; | 182 const char kStubCrosSettings[] = "stub-cros-settings"; |
| 193 | 183 |
| 194 // Enables usage of the new ManagedNetworkConfigurationHandler and | 184 // Enables usage of the new ManagedNetworkConfigurationHandler and |
| 195 // NetworkConfigurationHandler singletons. | 185 // NetworkConfigurationHandler singletons. |
| 196 const char kUseNewNetworkConfigurationHandlers[] = | 186 const char kUseNewNetworkConfigurationHandlers[] = |
| 197 "use-new-network-configuration-handlers"; | 187 "use-new-network-configuration-handlers"; |
| 198 | 188 |
| 199 } // namespace switches | 189 } // namespace switches |
| 200 } // namespace chromeos | 190 } // namespace chromeos |
| OLD | NEW |