| 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 | |
| 157 // Makes GPU sandbox failures nonfatal. | 152 // Makes GPU sandbox failures nonfatal. |
| 158 const char kGpuSandboxFailuresNonfatal[] = "gpu-sandbox-failures-nonfatal"; | 153 const char kGpuSandboxFailuresNonfatal[] = "gpu-sandbox-failures-nonfatal"; |
| 159 | 154 |
| 160 // Indicates that the browser is in "browse without sign-in" (Guest session) | 155 // Indicates that the browser is in "browse without sign-in" (Guest session) |
| 161 // mode. Should completely disable extensions, sync and bookmarks. | 156 // mode. Should completely disable extensions, sync and bookmarks. |
| 162 const char kGuestSession[] = "bwsi"; | 157 const char kGuestSession[] = "bwsi"; |
| 163 | 158 |
| 164 // If true, the Chromebook has a Chrome OS keyboard. Don't use the flag for | 159 // If true, the Chromebook has a Chrome OS keyboard. Don't use the flag for |
| 165 // Chromeboxes. | 160 // Chromeboxes. |
| 166 const char kHasChromeOSKeyboard[] = "has-chromeos-keyboard"; | 161 const char kHasChromeOSKeyboard[] = "has-chromeos-keyboard"; |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 226 const char kForceFirstRunUI[] = "force-first-run-ui"; | 221 const char kForceFirstRunUI[] = "force-first-run-ui"; |
| 227 | 222 |
| 228 // Enables testing for auto update UI. | 223 // Enables testing for auto update UI. |
| 229 const char kTestAutoUpdateUI[] = "test-auto-update-ui"; | 224 const char kTestAutoUpdateUI[] = "test-auto-update-ui"; |
| 230 | 225 |
| 231 // Enables features required for supervised user sync, | 226 // Enables features required for supervised user sync, |
| 232 const char kEnableSupervisedPasswordSync[] = "enable-supervised-password-sync"; | 227 const char kEnableSupervisedPasswordSync[] = "enable-supervised-password-sync"; |
| 233 | 228 |
| 234 } // namespace switches | 229 } // namespace switches |
| 235 } // namespace chromeos | 230 } // namespace chromeos |
| OLD | NEW |