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 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
142 "file-manager-enable-multi-profile"; | 142 "file-manager-enable-multi-profile"; |
143 | 143 |
144 // Passed to Chrome the first time that it's run after the system boots. | 144 // Passed to Chrome the first time that it's run after the system boots. |
145 // Not passed on restart after sign out. | 145 // Not passed on restart after sign out. |
146 const char kFirstExecAfterBoot[] = "first-exec-after-boot"; | 146 const char kFirstExecAfterBoot[] = "first-exec-after-boot"; |
147 | 147 |
148 // Usually in browser tests the usual login manager bringup is skipped so that | 148 // Usually in browser tests the usual login manager bringup is skipped so that |
149 // tests can change how it's brought up. This flag disables that. | 149 // tests can change how it's brought up. This flag disables that. |
150 const char kForceLoginManagerInTests[] = "force-login-manager-in-tests"; | 150 const char kForceLoginManagerInTests[] = "force-login-manager-in-tests"; |
151 | 151 |
| 152 // Sets primary user's default multiprofile behavior to 'unrestricted' for |
| 153 // tests so that multiprofile is enabled for any user. |
| 154 // TODO(xiyuan): Remove when multiprofile is released to everyone. |
| 155 const char kForceMultiProfileInTests[] = "force-multi-profiles-in-tests"; |
| 156 |
152 // Makes GPU sandbox failures nonfatal. | 157 // Makes GPU sandbox failures nonfatal. |
153 const char kGpuSandboxFailuresNonfatal[] = "gpu-sandbox-failures-nonfatal"; | 158 const char kGpuSandboxFailuresNonfatal[] = "gpu-sandbox-failures-nonfatal"; |
154 | 159 |
155 // Indicates that the browser is in "browse without sign-in" (Guest session) | 160 // Indicates that the browser is in "browse without sign-in" (Guest session) |
156 // mode. Should completely disable extensions, sync and bookmarks. | 161 // mode. Should completely disable extensions, sync and bookmarks. |
157 const char kGuestSession[] = "bwsi"; | 162 const char kGuestSession[] = "bwsi"; |
158 | 163 |
159 // If true, the Chromebook has a Chrome OS keyboard. Don't use the flag for | 164 // If true, the Chromebook has a Chrome OS keyboard. Don't use the flag for |
160 // Chromeboxes. | 165 // Chromeboxes. |
161 const char kHasChromeOSKeyboard[] = "has-chromeos-keyboard"; | 166 const char kHasChromeOSKeyboard[] = "has-chromeos-keyboard"; |
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
221 const char kForceFirstRunUI[] = "force-first-run-ui"; | 226 const char kForceFirstRunUI[] = "force-first-run-ui"; |
222 | 227 |
223 // Enables testing for auto update UI. | 228 // Enables testing for auto update UI. |
224 const char kTestAutoUpdateUI[] = "test-auto-update-ui"; | 229 const char kTestAutoUpdateUI[] = "test-auto-update-ui"; |
225 | 230 |
226 // Enables features required for supervised user sync, | 231 // Enables features required for supervised user sync, |
227 const char kEnableSupervisedPasswordSync[] = "enable-supervised-password-sync"; | 232 const char kEnableSupervisedPasswordSync[] = "enable-supervised-password-sync"; |
228 | 233 |
229 } // namespace switches | 234 } // namespace switches |
230 } // namespace chromeos | 235 } // namespace chromeos |
OLD | NEW |