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 #include "base/command_line.h" | 8 #include "base/command_line.h" |
9 | 9 |
10 namespace switches { | 10 namespace switches { |
(...skipping 434 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
445 const char kEnableIPv6[] = "enable-ipv6"; | 445 const char kEnableIPv6[] = "enable-ipv6"; |
446 | 446 |
447 /// Enable the IPC fuzzer for reliability testing | 447 /// Enable the IPC fuzzer for reliability testing |
448 const char kEnableIPCFuzzing[] = "enable-ipc-fuzzing"; | 448 const char kEnableIPCFuzzing[] = "enable-ipc-fuzzing"; |
449 | 449 |
450 // Enables IP Pooling within the networks stack (SPDY only). When a connection | 450 // Enables IP Pooling within the networks stack (SPDY only). When a connection |
451 // is needed for a domain which shares an IP with an existing connection, | 451 // is needed for a domain which shares an IP with an existing connection, |
452 // attempt to use the existing connection. | 452 // attempt to use the existing connection. |
453 const char kEnableIPPooling[] = "enable-ip-pooling"; | 453 const char kEnableIPPooling[] = "enable-ip-pooling"; |
454 | 454 |
| 455 // Enables some extension background pages to be loaded when they are |
| 456 // needed rather than when the extensions are first loaded. |
| 457 const char kEnableLazyBackgroundPages[] = "enable-lazy-background-pages"; |
| 458 |
455 // Enables MAC cookies in the network stack. These cookies use HMAC to | 459 // Enables MAC cookies in the network stack. These cookies use HMAC to |
456 // protect session state from passive network attackers. | 460 // protect session state from passive network attackers. |
457 // http://tools.ietf.org/html/draft-hammer-oauth-v2-mac-token | 461 // http://tools.ietf.org/html/draft-hammer-oauth-v2-mac-token |
458 const char kEnableMacCookies[] = "enable-mac-cookies"; | 462 const char kEnableMacCookies[] = "enable-mac-cookies"; |
459 | 463 |
460 // Allows reporting memory info (JS heap size) to page. | 464 // Allows reporting memory info (JS heap size) to page. |
461 const char kEnableMemoryInfo[] = "enable-memory-info"; | 465 const char kEnableMemoryInfo[] = "enable-memory-info"; |
462 | 466 |
463 // Runs the Native Client inside the renderer process and enables GPU plugin | 467 // Runs the Native Client inside the renderer process and enables GPU plugin |
464 // (internally adds lEnableGpuPlugin to the command line). | 468 // (internally adds lEnableGpuPlugin to the command line). |
(...skipping 769 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1234 | 1238 |
1235 // ----------------------------------------------------------------------------- | 1239 // ----------------------------------------------------------------------------- |
1236 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1240 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1237 // | 1241 // |
1238 // You were going to just dump your switches here, weren't you? Instead, | 1242 // You were going to just dump your switches here, weren't you? Instead, |
1239 // please put them in alphabetical order above, or in order inside the | 1243 // please put them in alphabetical order above, or in order inside the |
1240 // appropriate ifdef at the bottom. The order should match the header. | 1244 // appropriate ifdef at the bottom. The order should match the header. |
1241 // ----------------------------------------------------------------------------- | 1245 // ----------------------------------------------------------------------------- |
1242 | 1246 |
1243 } // namespace switches | 1247 } // namespace switches |
OLD | NEW |