Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(219)

Side by Side Diff: chromeos/chromeos_switches.cc

Issue 608283003: Remove retail mode. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
94 const char kEnableRollbackOption[] = "enable-rollback-option"; 94 const char kEnableRollbackOption[] = "enable-rollback-option";
95 95
96 // Enables touchpad three-finger-click as middle button. 96 // Enables touchpad three-finger-click as middle button.
97 const char kEnableTouchpadThreeFingerClick[] 97 const char kEnableTouchpadThreeFingerClick[]
98 = "enable-touchpad-three-finger-click"; 98 = "enable-touchpad-three-finger-click";
99 99
100 // Enables using screenshots in tests and seets mode. 100 // Enables using screenshots in tests and seets mode.
101 const char kEnableScreenshotTestingWithMode[] = 101 const char kEnableScreenshotTestingWithMode[] =
102 "enable-screenshot-testing-with-mode"; 102 "enable-screenshot-testing-with-mode";
103 103
104 // Enable Kiosk mode for ChromeOS. Note this switch refers to retail mode rather
105 // than the kiosk app mode.
106 const char kEnableKioskMode[] = "enable-kiosk-mode";
107
108 // Enables request of tablet site (via user agent override). 104 // Enables request of tablet site (via user agent override).
109 const char kEnableRequestTabletSite[] = "enable-request-tablet-site"; 105 const char kEnableRequestTabletSite[] = "enable-request-tablet-site";
110 106
111 // Whether to enable forced enterprise re-enrollment. 107 // Whether to enable forced enterprise re-enrollment.
112 const char kEnterpriseEnableForcedReEnrollment[] = 108 const char kEnterpriseEnableForcedReEnrollment[] =
113 "enterprise-enable-forced-re-enrollment"; 109 "enterprise-enable-forced-re-enrollment";
114 110
115 // Power of the power-of-2 initial modulus that will be used by the 111 // Power of the power-of-2 initial modulus that will be used by the
116 // auto-enrollment client. E.g. "4" means the modulus will be 2^4 = 16. 112 // auto-enrollment client. E.g. "4" means the modulus will be 2^4 = 16.
117 const char kEnterpriseEnrollmentInitialModulus[] = 113 const char kEnterpriseEnrollmentInitialModulus[] =
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
156 // With this switch, start remora OOBE with the pairing screen. 152 // With this switch, start remora OOBE with the pairing screen.
157 const char kHostPairingOobe[] = "host-pairing-oobe"; 153 const char kHostPairingOobe[] = "host-pairing-oobe";
158 154
159 // If true, profile selection in UserManager will always return active user's 155 // If true, profile selection in UserManager will always return active user's
160 // profile. 156 // profile.
161 // TODO(nkostlyev): http://crbug.com/364604 - Get rid of this switch after we 157 // TODO(nkostlyev): http://crbug.com/364604 - Get rid of this switch after we
162 // turn on multi-profile feature on ChromeOS. 158 // turn on multi-profile feature on ChromeOS.
163 const char kIgnoreUserProfileMappingForTests[] = 159 const char kIgnoreUserProfileMappingForTests[] =
164 "ignore-user-profile-mapping-for-tests"; 160 "ignore-user-profile-mapping-for-tests";
165 161
166 // Path for the screensaver used in Kiosk mode
167 const char kKioskModeScreensaverPath[] = "kiosk-mode-screensaver-path";
168
169 // Enables Chrome-as-a-login-manager behavior. 162 // Enables Chrome-as-a-login-manager behavior.
170 const char kLoginManager[] = "login-manager"; 163 const char kLoginManager[] = "login-manager";
171 164
172 // Specifies the profile to use once a chromeos user is logged in. 165 // Specifies the profile to use once a chromeos user is logged in.
173 // This parameter is ignored if user goes through login screen since user_id 166 // This parameter is ignored if user goes through login screen since user_id
174 // hash defines which profile directory to use. 167 // hash defines which profile directory to use.
175 // In case of browser restart within active session this parameter is used 168 // In case of browser restart within active session this parameter is used
176 // to pass user_id hash for primary user. 169 // to pass user_id hash for primary user.
177 const char kLoginProfile[] = "login-profile"; 170 const char kLoginProfile[] = "login-profile";
178 171
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
237 230
238 // Screenshot testing: specifies the directory where the golden screenshots are 231 // Screenshot testing: specifies the directory where the golden screenshots are
239 // stored. 232 // stored.
240 const char kGoldenScreenshotsDir[] = "golden-screenshots-dir"; 233 const char kGoldenScreenshotsDir[] = "golden-screenshots-dir";
241 234
242 // Screenshot testing: specifies the directoru where artifacts will be stored. 235 // Screenshot testing: specifies the directoru where artifacts will be stored.
243 const char kArtifactsDir[] = "artifacts-dir"; 236 const char kArtifactsDir[] = "artifacts-dir";
244 237
245 } // namespace switches 238 } // namespace switches
246 } // namespace chromeos 239 } // namespace chromeos
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698