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 #ifndef COMPONENTS_DATA_REDUCTION_PROXY_COMMON_DATA_REDUCTION_PROXY_PREF_NAMES_H
_ | 5 #ifndef COMPONENTS_DATA_REDUCTION_PROXY_COMMON_DATA_REDUCTION_PROXY_PREF_NAMES_H
_ |
6 #define COMPONENTS_DATA_REDUCTION_PROXY_COMMON_DATA_REDUCTION_PROXY_PREF_NAMES_H
_ | 6 #define COMPONENTS_DATA_REDUCTION_PROXY_COMMON_DATA_REDUCTION_PROXY_PREF_NAMES_H
_ |
7 | 7 |
8 namespace data_reduction_proxy { | 8 namespace data_reduction_proxy { |
9 namespace prefs { | 9 namespace prefs { |
10 | 10 |
11 // Alphabetical list of preference names specific to the data_reduction_proxy | 11 // Alphabetical list of preference names specific to the data_reduction_proxy |
12 // component. Keep alphabetized, and document each in the .cc file. | 12 // component. Keep alphabetized, and document each in the .cc file. |
13 | 13 |
14 extern const char kDailyContentLengthHttpsWithDataReductionProxyEnabled[]; | 14 extern const char kDailyContentLengthHttpsWithDataReductionProxyEnabled[]; |
15 extern const char kDailyContentLengthLongBypassWithDataReductionProxyEnabled[]; | 15 extern const char kDailyContentLengthLongBypassWithDataReductionProxyEnabled[]; |
16 extern const char kDailyContentLengthShortBypassWithDataReductionProxyEnabled[]; | 16 extern const char kDailyContentLengthShortBypassWithDataReductionProxyEnabled[]; |
17 extern const char kDailyContentLengthUnknownWithDataReductionProxyEnabled[]; | 17 extern const char kDailyContentLengthUnknownWithDataReductionProxyEnabled[]; |
18 extern const char kDailyContentLengthViaDataReductionProxy[]; | 18 extern const char kDailyContentLengthViaDataReductionProxy[]; |
19 extern const char kDailyContentLengthWithDataReductionProxyEnabled[]; | 19 extern const char kDailyContentLengthWithDataReductionProxyEnabled[]; |
20 extern const char kDailyHttpContentLengthLastUpdateDate[]; | 20 extern const char kDailyHttpContentLengthLastUpdateDate[]; |
21 extern const char kDailyHttpOriginalContentLength[]; | 21 extern const char kDailyHttpOriginalContentLength[]; |
22 extern const char kDailyHttpReceivedContentLength[]; | 22 extern const char kDailyHttpReceivedContentLength[]; |
23 extern const char kDailyOriginalContentLengthViaDataReductionProxy[]; | 23 extern const char kDailyOriginalContentLengthViaDataReductionProxy[]; |
24 extern const char kDailyOriginalContentLengthWithDataReductionProxyEnabled[]; | 24 extern const char kDailyOriginalContentLengthWithDataReductionProxyEnabled[]; |
25 extern const char kDataReductionProxy[]; | 25 extern const char kDataReductionProxy[]; |
26 extern const char kDataReductionProxyEnabled[]; | 26 extern const char kDataReductionProxyEnabled[]; |
| 27 extern const char kDataReductionProxyAltEnabled[]; |
27 extern const char kDataReductionProxyWasEnabledBefore[]; | 28 extern const char kDataReductionProxyWasEnabledBefore[]; |
28 extern const char kHttpOriginalContentLength[]; | 29 extern const char kHttpOriginalContentLength[]; |
29 extern const char kHttpReceivedContentLength[]; | 30 extern const char kHttpReceivedContentLength[]; |
30 | 31 |
31 } // namespace prefs | 32 } // namespace prefs |
32 } // namespace data_reduction_proxy | 33 } // namespace data_reduction_proxy |
33 | 34 |
34 #endif // COMPONENTS_DATA_REDUCTION_PROXY_COMMON_DATA_REDUCTION_PROXY_PREF_NAME
S_H_ | 35 #endif // COMPONENTS_DATA_REDUCTION_PROXY_COMMON_DATA_REDUCTION_PROXY_PREF_NAME
S_H_ |
OLD | NEW |