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 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
127 "file-manager-enable-new-audio-player"; | 127 "file-manager-enable-new-audio-player"; |
128 | 128 |
129 // Passed to Chrome the first time that it's run after the system boots. | 129 // Passed to Chrome the first time that it's run after the system boots. |
130 // Not passed on restart after sign out. | 130 // Not passed on restart after sign out. |
131 const char kFirstExecAfterBoot[] = "first-exec-after-boot"; | 131 const char kFirstExecAfterBoot[] = "first-exec-after-boot"; |
132 | 132 |
133 // Usually in browser tests the usual login manager bringup is skipped so that | 133 // Usually in browser tests the usual login manager bringup is skipped so that |
134 // tests can change how it's brought up. This flag disables that. | 134 // tests can change how it's brought up. This flag disables that. |
135 const char kForceLoginManagerInTests[] = "force-login-manager-in-tests"; | 135 const char kForceLoginManagerInTests[] = "force-login-manager-in-tests"; |
136 | 136 |
| 137 // Makes GPU sandbox failures nonfatal. |
| 138 const char kGpuSandboxFailuresNonfatal[] = "gpu-sandbox-failures-nonfatal"; |
| 139 |
137 // Indicates that the browser is in "browse without sign-in" (Guest session) | 140 // Indicates that the browser is in "browse without sign-in" (Guest session) |
138 // mode. Should completely disable extensions, sync and bookmarks. | 141 // mode. Should completely disable extensions, sync and bookmarks. |
139 const char kGuestSession[] = "bwsi"; | 142 const char kGuestSession[] = "bwsi"; |
140 | 143 |
141 // If true, the Chromebook has a Chrome OS keyboard. Don't use the flag for | 144 // If true, the Chromebook has a Chrome OS keyboard. Don't use the flag for |
142 // Chromeboxes. | 145 // Chromeboxes. |
143 const char kHasChromeOSKeyboard[] = "has-chromeos-keyboard"; | 146 const char kHasChromeOSKeyboard[] = "has-chromeos-keyboard"; |
144 | 147 |
145 // If true, the Chromebook has a keyboard with a diamond key. | 148 // If true, the Chromebook has a keyboard with a diamond key. |
146 const char kHasChromeOSDiamondKey[] = "has-chromeos-diamond-key"; | 149 const char kHasChromeOSDiamondKey[] = "has-chromeos-diamond-key"; |
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
217 const char kForceFirstRunUI[] = "force-first-run-ui"; | 220 const char kForceFirstRunUI[] = "force-first-run-ui"; |
218 | 221 |
219 // Enables testing for auto update UI. | 222 // Enables testing for auto update UI. |
220 const char kTestAutoUpdateUI[] = "test-auto-update-ui"; | 223 const char kTestAutoUpdateUI[] = "test-auto-update-ui"; |
221 | 224 |
222 // Enables features required for supervised user sync, | 225 // Enables features required for supervised user sync, |
223 const char kEnableSupervisedPasswordSync[] = "enable-supervised-password-sync"; | 226 const char kEnableSupervisedPasswordSync[] = "enable-supervised-password-sync"; |
224 | 227 |
225 } // namespace switches | 228 } // namespace switches |
226 } // namespace chromeos | 229 } // namespace chromeos |
OLD | NEW |