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 448 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
459 const char kEnableIPv6[] = "enable-ipv6"; | 459 const char kEnableIPv6[] = "enable-ipv6"; |
460 | 460 |
461 /// Enable the IPC fuzzer for reliability testing | 461 /// Enable the IPC fuzzer for reliability testing |
462 const char kEnableIPCFuzzing[] = "enable-ipc-fuzzing"; | 462 const char kEnableIPCFuzzing[] = "enable-ipc-fuzzing"; |
463 | 463 |
464 // Enables IP Pooling within the networks stack (SPDY only). When a connection | 464 // Enables IP Pooling within the networks stack (SPDY only). When a connection |
465 // is needed for a domain which shares an IP with an existing connection, | 465 // is needed for a domain which shares an IP with an existing connection, |
466 // attempt to use the existing connection. | 466 // attempt to use the existing connection. |
467 const char kEnableIPPooling[] = "enable-ip-pooling"; | 467 const char kEnableIPPooling[] = "enable-ip-pooling"; |
468 | 468 |
| 469 // Enables some extension background pages to be loaded when they are |
| 470 // needed rather than when the extensions are first loaded. |
| 471 const char kEnableLazyBackgroundPages[] = "enable-lazy-background-pages"; |
| 472 |
469 // Enables MAC cookies in the network stack. These cookies use HMAC to | 473 // Enables MAC cookies in the network stack. These cookies use HMAC to |
470 // protect session state from passive network attackers. | 474 // protect session state from passive network attackers. |
471 // http://tools.ietf.org/html/draft-hammer-oauth-v2-mac-token | 475 // http://tools.ietf.org/html/draft-hammer-oauth-v2-mac-token |
472 const char kEnableMacCookies[] = "enable-mac-cookies"; | 476 const char kEnableMacCookies[] = "enable-mac-cookies"; |
473 | 477 |
474 // Allows reporting memory info (JS heap size) to page. | 478 // Allows reporting memory info (JS heap size) to page. |
475 const char kEnableMemoryInfo[] = "enable-memory-info"; | 479 const char kEnableMemoryInfo[] = "enable-memory-info"; |
476 | 480 |
477 // Runs the Native Client inside the renderer process and enables GPU plugin | 481 // Runs the Native Client inside the renderer process and enables GPU plugin |
478 // (internally adds lEnableGpuPlugin to the command line). | 482 // (internally adds lEnableGpuPlugin to the command line). |
(...skipping 769 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1248 | 1252 |
1249 // ----------------------------------------------------------------------------- | 1253 // ----------------------------------------------------------------------------- |
1250 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1254 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1251 // | 1255 // |
1252 // You were going to just dump your switches here, weren't you? Instead, | 1256 // You were going to just dump your switches here, weren't you? Instead, |
1253 // please put them in alphabetical order above, or in order inside the | 1257 // please put them in alphabetical order above, or in order inside the |
1254 // appropriate ifdef at the bottom. The order should match the header. | 1258 // appropriate ifdef at the bottom. The order should match the header. |
1255 // ----------------------------------------------------------------------------- | 1259 // ----------------------------------------------------------------------------- |
1256 | 1260 |
1257 } // namespace switches | 1261 } // namespace switches |
OLD | NEW |