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 | |
140 // Indicates that the browser is in "browse without sign-in" (Guest session) | 137 // Indicates that the browser is in "browse without sign-in" (Guest session) |
141 // mode. Should completely disable extensions, sync and bookmarks. | 138 // mode. Should completely disable extensions, sync and bookmarks. |
142 const char kGuestSession[] = "bwsi"; | 139 const char kGuestSession[] = "bwsi"; |
143 | 140 |
144 // If true, the Chromebook has a Chrome OS keyboard. Don't use the flag for | 141 // If true, the Chromebook has a Chrome OS keyboard. Don't use the flag for |
145 // Chromeboxes. | 142 // Chromeboxes. |
146 const char kHasChromeOSKeyboard[] = "has-chromeos-keyboard"; | 143 const char kHasChromeOSKeyboard[] = "has-chromeos-keyboard"; |
147 | 144 |
148 // If true, the Chromebook has a keyboard with a diamond key. | 145 // If true, the Chromebook has a keyboard with a diamond key. |
149 const char kHasChromeOSDiamondKey[] = "has-chromeos-diamond-key"; | 146 const char kHasChromeOSDiamondKey[] = "has-chromeos-diamond-key"; |
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
220 const char kForceFirstRunUI[] = "force-first-run-ui"; | 217 const char kForceFirstRunUI[] = "force-first-run-ui"; |
221 | 218 |
222 // Enables testing for auto update UI. | 219 // Enables testing for auto update UI. |
223 const char kTestAutoUpdateUI[] = "test-auto-update-ui"; | 220 const char kTestAutoUpdateUI[] = "test-auto-update-ui"; |
224 | 221 |
225 // Enables features required for supervised user sync, | 222 // Enables features required for supervised user sync, |
226 const char kEnableSupervisedPasswordSync[] = "enable-supervised-password-sync"; | 223 const char kEnableSupervisedPasswordSync[] = "enable-supervised-password-sync"; |
227 | 224 |
228 } // namespace switches | 225 } // namespace switches |
229 } // namespace chromeos | 226 } // namespace chromeos |
OLD | NEW |