Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 602 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 613 const char kEnableProfiling[] = "enable-profiling"; | 613 const char kEnableProfiling[] = "enable-profiling"; |
| 614 | 614 |
| 615 // Enables support for the QUIC protocol. This is a temporary testing flag. | 615 // Enables support for the QUIC protocol. This is a temporary testing flag. |
| 616 const char kEnableQuic[] = "enable-quic"; | 616 const char kEnableQuic[] = "enable-quic"; |
| 617 | 617 |
| 618 // Enables content settings based on host *and* plug-in in the user | 618 // Enables content settings based on host *and* plug-in in the user |
| 619 // preferences. | 619 // preferences. |
| 620 const char kEnableResourceContentSettings[] = | 620 const char kEnableResourceContentSettings[] = |
| 621 "enable-resource-content-settings"; | 621 "enable-resource-content-settings"; |
| 622 | 622 |
| 623 // Enables SSL 3.0 fallback. | |
|
wtc
2013/04/18 18:15:34
This comment should say something like
"Enables pe
| |
| 624 const char kEnableSSL3Fallback[] = "enable-ssl3-fallback"; | |
| 625 | |
| 623 // Controls the support for SDCH filtering (dictionary based expansion of | 626 // Controls the support for SDCH filtering (dictionary based expansion of |
| 624 // content). By default SDCH filtering is enabled. To disable SDCH filtering, | 627 // content). By default SDCH filtering is enabled. To disable SDCH filtering, |
| 625 // use "--enable-sdch=0" as command line argument. SDCH is currently only | 628 // use "--enable-sdch=0" as command line argument. SDCH is currently only |
| 626 // supported server-side for searches on google.com. | 629 // supported server-side for searches on google.com. |
| 627 const char kEnableSdch[] = "enable-sdch"; | 630 const char kEnableSdch[] = "enable-sdch"; |
| 628 | 631 |
| 629 // Enable SPDY/3.1. This is a temporary testing flag. | 632 // Enable SPDY/3.1. This is a temporary testing flag. |
| 630 const char kEnableSpdy31[] = "enable-spdy31"; | 633 const char kEnableSpdy31[] = "enable-spdy31"; |
| 631 | 634 |
| 632 // Enable SPDY CREDENTIAL frame support. This is a temporary testing flag. | 635 // Enable SPDY CREDENTIAL frame support. This is a temporary testing flag. |
| (...skipping 1053 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1686 | 1689 |
| 1687 // ----------------------------------------------------------------------------- | 1690 // ----------------------------------------------------------------------------- |
| 1688 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1691 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1689 // | 1692 // |
| 1690 // You were going to just dump your switches here, weren't you? Instead, please | 1693 // You were going to just dump your switches here, weren't you? Instead, please |
| 1691 // put them in alphabetical order above, or in order inside the appropriate | 1694 // put them in alphabetical order above, or in order inside the appropriate |
| 1692 // ifdef at the bottom. The order should match the header. | 1695 // ifdef at the bottom. The order should match the header. |
| 1693 // ----------------------------------------------------------------------------- | 1696 // ----------------------------------------------------------------------------- |
| 1694 | 1697 |
| 1695 } // namespace switches | 1698 } // namespace switches |
| OLD | NEW |