OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 | 8 |
9 namespace switches { | 9 namespace switches { |
10 | 10 |
(...skipping 420 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
431 // in-renderer thumbnailing, as we can use more information to determine | 431 // in-renderer thumbnailing, as we can use more information to determine |
432 // if we need to update thumbnails. | 432 // if we need to update thumbnails. |
433 const char kEnableInBrowserThumbnailing[] = "enable-in-browser-thumbnailing"; | 433 const char kEnableInBrowserThumbnailing[] = "enable-in-browser-thumbnailing"; |
434 | 434 |
435 // Enable IPv6 support, even if probes suggest that it may not be fully | 435 // Enable IPv6 support, even if probes suggest that it may not be fully |
436 // supported. Some probes may require internet connections, and this flag will | 436 // supported. Some probes may require internet connections, and this flag will |
437 // allow support independent of application testing. | 437 // allow support independent of application testing. |
438 // This flag overrides "disable-ipv6" which appears elswhere in this file. | 438 // This flag overrides "disable-ipv6" which appears elswhere in this file. |
439 const char kEnableIPv6[] = "enable-ipv6"; | 439 const char kEnableIPv6[] = "enable-ipv6"; |
440 | 440 |
| 441 /// Enable the IPC fuzzer for reliability testing |
| 442 const char kEnableIPCFuzzing[] = "enable-ipc-fuzzing"; |
| 443 |
441 // Enables IP Pooling within the networks stack (SPDY only). When a connection | 444 // Enables IP Pooling within the networks stack (SPDY only). When a connection |
442 // is needed for a domain which shares an IP with an existing connection, | 445 // is needed for a domain which shares an IP with an existing connection, |
443 // attempt to use the existing connection. | 446 // attempt to use the existing connection. |
444 const char kEnableIPPooling[] = "enable-ip-pooling"; | 447 const char kEnableIPPooling[] = "enable-ip-pooling"; |
445 | 448 |
446 // Allows reporting memory info (JS heap size) to page. | 449 // Allows reporting memory info (JS heap size) to page. |
447 const char kEnableMemoryInfo[] = "enable-memory-info"; | 450 const char kEnableMemoryInfo[] = "enable-memory-info"; |
448 | 451 |
449 // Runs the Native Client inside the renderer process and enables GPU plugin | 452 // Runs the Native Client inside the renderer process and enables GPU plugin |
450 // (internally adds lEnableGpuPlugin to the command line). | 453 // (internally adds lEnableGpuPlugin to the command line). |
(...skipping 676 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1127 | 1130 |
1128 // ----------------------------------------------------------------------------- | 1131 // ----------------------------------------------------------------------------- |
1129 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1132 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1130 // | 1133 // |
1131 // You were going to just dump your switches here, weren't you? Instead, | 1134 // You were going to just dump your switches here, weren't you? Instead, |
1132 // please put them in alphabetical order above, or in order inside the | 1135 // please put them in alphabetical order above, or in order inside the |
1133 // appropriate ifdef at the bottom. The order should match the header. | 1136 // appropriate ifdef at the bottom. The order should match the header. |
1134 // ----------------------------------------------------------------------------- | 1137 // ----------------------------------------------------------------------------- |
1135 | 1138 |
1136 } // namespace switches | 1139 } // namespace switches |
OLD | NEW |