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