| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 "components/data_reduction_proxy/core/common/data_reduction_proxy_switc
hes.h" | 5 #include "components/data_reduction_proxy/core/common/data_reduction_proxy_switc
hes.h" |
| 6 | 6 |
| 7 namespace data_reduction_proxy { | 7 namespace data_reduction_proxy { |
| 8 namespace switches { | 8 namespace switches { |
| 9 | 9 |
| 10 // The origin of the data reduction proxy. | 10 // The origin of the data reduction proxy. |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 73 // Enables lite page from the data reduction proxy. This means a lite page | 73 // Enables lite page from the data reduction proxy. This means a lite page |
| 74 // should be requested instead of placeholders whenever Lo-Fi mode is on. Lo-fi | 74 // should be requested instead of placeholders whenever Lo-Fi mode is on. Lo-fi |
| 75 // must also be enabled via a flag or field trial. | 75 // must also be enabled via a flag or field trial. |
| 76 const char kEnableDataReductionProxyLitePage[] = | 76 const char kEnableDataReductionProxyLitePage[] = |
| 77 "enable-data-reduction-proxy-lite-page"; | 77 "enable-data-reduction-proxy-lite-page"; |
| 78 | 78 |
| 79 // Enables sending a pageload metrics pingback after every page load. | 79 // Enables sending a pageload metrics pingback after every page load. |
| 80 const char kEnableDataReductionProxyForcePingback[] = | 80 const char kEnableDataReductionProxyForcePingback[] = |
| 81 "enable-data-reduction-proxy-force-pingback"; | 81 "enable-data-reduction-proxy-force-pingback"; |
| 82 | 82 |
| 83 // If set, enables use of QUIC with non core data reduction proxies. | |
| 84 const char kDataReductionProxyEnableQuicOnNonCoreProxies[] = | |
| 85 "data-reduction-proxy-enable-quic-on-non-core-proxies"; | |
| 86 | |
| 87 // Enables a 1 MB savings promo for the data reduction proxy. | 83 // Enables a 1 MB savings promo for the data reduction proxy. |
| 88 const char kEnableDataReductionProxySavingsPromo[] = | 84 const char kEnableDataReductionProxySavingsPromo[] = |
| 89 "enable-data-reduction-proxy-savings-promo"; | 85 "enable-data-reduction-proxy-savings-promo"; |
| 90 | 86 |
| 91 } // namespace switches | 87 } // namespace switches |
| 92 } // namespace data_reduction_proxy | 88 } // namespace data_reduction_proxy |
| OLD | NEW |