| 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 160 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 171 // With this switch, start remora OOBE with the pairing screen. | 171 // With this switch, start remora OOBE with the pairing screen. |
| 172 const char kHostPairingOobe[] = "host-pairing-oobe"; | 172 const char kHostPairingOobe[] = "host-pairing-oobe"; |
| 173 | 173 |
| 174 // If true, profile selection in UserManager will always return active user's | 174 // If true, profile selection in UserManager will always return active user's |
| 175 // profile. | 175 // profile. |
| 176 // TODO(nkostlyev): http://crbug.com/364604 - Get rid of this switch after we | 176 // TODO(nkostlyev): http://crbug.com/364604 - Get rid of this switch after we |
| 177 // turn on multi-profile feature on ChromeOS. | 177 // turn on multi-profile feature on ChromeOS. |
| 178 const char kIgnoreUserProfileMappingForTests[] = | 178 const char kIgnoreUserProfileMappingForTests[] = |
| 179 "ignore-user-profile-mapping-for-tests"; | 179 "ignore-user-profile-mapping-for-tests"; |
| 180 | 180 |
| 181 // Path for the screensaver used in Kiosk mode | |
| 182 const char kKioskModeScreensaverPath[] = "kiosk-mode-screensaver-path"; | |
| 183 | |
| 184 // Enables Chrome-as-a-login-manager behavior. | 181 // Enables Chrome-as-a-login-manager behavior. |
| 185 const char kLoginManager[] = "login-manager"; | 182 const char kLoginManager[] = "login-manager"; |
| 186 | 183 |
| 187 // Specifies the profile to use once a chromeos user is logged in. | 184 // Specifies the profile to use once a chromeos user is logged in. |
| 188 // This parameter is ignored if user goes through login screen since user_id | 185 // This parameter is ignored if user goes through login screen since user_id |
| 189 // hash defines which profile directory to use. | 186 // hash defines which profile directory to use. |
| 190 // In case of browser restart within active session this parameter is used | 187 // In case of browser restart within active session this parameter is used |
| 191 // to pass user_id hash for primary user. | 188 // to pass user_id hash for primary user. |
| 192 const char kLoginProfile[] = "login-profile"; | 189 const char kLoginProfile[] = "login-profile"; |
| 193 | 190 |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 263 | 260 |
| 264 // Screenshot testing: specifies the directoru where artifacts will be stored. | 261 // Screenshot testing: specifies the directoru where artifacts will be stored. |
| 265 const char kArtifactsDir[] = "artifacts-dir"; | 262 const char kArtifactsDir[] = "artifacts-dir"; |
| 266 | 263 |
| 267 // Bypass proxy for captive portal authorization. | 264 // Bypass proxy for captive portal authorization. |
| 268 const char kEnableCaptivePortalBypassProxy[] = | 265 const char kEnableCaptivePortalBypassProxy[] = |
| 269 "enable-captive-portal-bypass-proxy"; | 266 "enable-captive-portal-bypass-proxy"; |
| 270 | 267 |
| 271 } // namespace switches | 268 } // namespace switches |
| 272 } // namespace chromeos | 269 } // namespace chromeos |
| OLD | NEW |