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 455 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
466 // Enables experimental timeline API. | 466 // Enables experimental timeline API. |
467 const char kEnableExtensionTimelineApi[] = "enable-extension-timeline-api"; | 467 const char kEnableExtensionTimelineApi[] = "enable-extension-timeline-api"; |
468 | 468 |
469 // Enables the fastback page cache. | 469 // Enables the fastback page cache. |
470 const char kEnableFastback[] = "enable-fastback"; | 470 const char kEnableFastback[] = "enable-fastback"; |
471 | 471 |
472 // By default, cookies are not allowed on file://. They are needed for testing, | 472 // By default, cookies are not allowed on file://. They are needed for testing, |
473 // for example page cycler and layout tests. See bug 1157243. | 473 // for example page cycler and layout tests. See bug 1157243. |
474 const char kEnableFileCookies[] = "enable-file-cookies"; | 474 const char kEnableFileCookies[] = "enable-file-cookies"; |
475 | 475 |
476 // Enable HTTP pipelining. Attempt to pipeline HTTP connections. Heuristics will | |
477 // try to figure out if pipelining can be used for a given host and request. | |
478 // Without this flag, pipelining will never be used. | |
479 const char kEnableHttpPipelining[] = "enable-http-pipelining"; | |
480 | |
481 // Enables the in-browser thumbnailing, which is more efficient than the | 476 // Enables the in-browser thumbnailing, which is more efficient than the |
482 // in-renderer thumbnailing, as we can use more information to determine if we | 477 // in-renderer thumbnailing, as we can use more information to determine if we |
483 // need to update thumbnails. | 478 // need to update thumbnails. |
484 const char kEnableInBrowserThumbnailing[] = "enable-in-browser-thumbnailing"; | 479 const char kEnableInBrowserThumbnailing[] = "enable-in-browser-thumbnailing"; |
485 | 480 |
486 // Enables IPv6 support, even if probes suggest that it may not be fully | 481 // Enables IPv6 support, even if probes suggest that it may not be fully |
487 // supported. Some probes may require internet connections, and this flag will | 482 // supported. Some probes may require internet connections, and this flag will |
488 // allow support independent of application testing. This flag overrides | 483 // allow support independent of application testing. This flag overrides |
489 // "disable-ipv6" which appears elswhere in this file. | 484 // "disable-ipv6" which appears elswhere in this file. |
490 const char kEnableIPv6[] = "enable-ipv6"; | 485 const char kEnableIPv6[] = "enable-ipv6"; |
(...skipping 807 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1298 | 1293 |
1299 // ----------------------------------------------------------------------------- | 1294 // ----------------------------------------------------------------------------- |
1300 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1295 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1301 // | 1296 // |
1302 // You were going to just dump your switches here, weren't you? Instead, please | 1297 // You were going to just dump your switches here, weren't you? Instead, please |
1303 // put them in alphabetical order above, or in order inside the appropriate | 1298 // put them in alphabetical order above, or in order inside the appropriate |
1304 // ifdef at the bottom. The order should match the header. | 1299 // ifdef at the bottom. The order should match the header. |
1305 // ----------------------------------------------------------------------------- | 1300 // ----------------------------------------------------------------------------- |
1306 | 1301 |
1307 } // namespace switches | 1302 } // namespace switches |
OLD | NEW |