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