OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 "chrome/common/chrome_switches.h" | 5 #include "chrome/common/chrome_switches.h" |
6 | 6 |
7 #include "base/base_switches.h" | 7 #include "base/base_switches.h" |
8 #include "base/command_line.h" | 8 #include "base/command_line.h" |
9 | 9 |
10 namespace switches { | 10 namespace switches { |
(...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
194 | 194 |
195 // Disables desktop notifications (default enabled on windows). | 195 // Disables desktop notifications (default enabled on windows). |
196 const char kDisableDesktopNotifications[] = "disable-desktop-notifications"; | 196 const char kDisableDesktopNotifications[] = "disable-desktop-notifications"; |
197 | 197 |
198 // Browser flag to disable the web inspector for all renderers. | 198 // Browser flag to disable the web inspector for all renderers. |
199 const char kDisableDevTools[] = "disable-dev-tools"; | 199 const char kDisableDevTools[] = "disable-dev-tools"; |
200 | 200 |
201 // Disables device orientation events. | 201 // Disables device orientation events. |
202 const char kDisableDeviceOrientation[] = "disable-device-orientation"; | 202 const char kDisableDeviceOrientation[] = "disable-device-orientation"; |
203 | 203 |
| 204 // By default, if the URL request throttler finds that a server is overloaded or |
| 205 // encounters an error, it rejects requests to the server for a period of time, |
| 206 // which is determined by an exponential back-off algorithm. This switch |
| 207 // disables such behavior. |
| 208 const char kDisableEnforcedThrottling[] = "disable-enforced-throttling"; |
| 209 |
204 // Disable experimental WebGL support. | 210 // Disable experimental WebGL support. |
205 const char kDisableExperimentalWebGL[] = "disable-webgl"; | 211 const char kDisableExperimentalWebGL[] = "disable-webgl"; |
206 | 212 |
207 // Disable extensions. | 213 // Disable extensions. |
208 const char kDisableExtensions[] = "disable-extensions"; | 214 const char kDisableExtensions[] = "disable-extensions"; |
209 | 215 |
210 // Disable checking for user opt-in for extensions that want to inject script | 216 // Disable checking for user opt-in for extensions that want to inject script |
211 // into file URLs (ie, always allow it). This is used during automated testing. | 217 // into file URLs (ie, always allow it). This is used during automated testing. |
212 const char kDisableExtensionsFileAccessCheck[] = | 218 const char kDisableExtensionsFileAccessCheck[] = |
213 "disable-extensions-file-access-check"; | 219 "disable-extensions-file-access-check"; |
(...skipping 1150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1364 | 1370 |
1365 // ----------------------------------------------------------------------------- | 1371 // ----------------------------------------------------------------------------- |
1366 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1372 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1367 // | 1373 // |
1368 // You were going to just dump your switches here, weren't you? Instead, | 1374 // You were going to just dump your switches here, weren't you? Instead, |
1369 // please put them in alphabetical order above, or in order inside the | 1375 // please put them in alphabetical order above, or in order inside the |
1370 // appropriate ifdef at the bottom. The order should match the header. | 1376 // appropriate ifdef at the bottom. The order should match the header. |
1371 // ----------------------------------------------------------------------------- | 1377 // ----------------------------------------------------------------------------- |
1372 | 1378 |
1373 } // namespace switches | 1379 } // namespace switches |
OLD | NEW |