• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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
3 // found in the LICENSE file.
4 
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_
7 
8 namespace data_reduction_proxy {
9 namespace prefs {
10 
11 // Alphabetical list of preference names specific to the data_reduction_proxy
12 // component. Keep alphabetized, and document each in the .cc file.
13 
14 extern const char kDailyContentLengthHttpsWithDataReductionProxyEnabled[];
15 extern const char kDailyContentLengthLongBypassWithDataReductionProxyEnabled[];
16 extern const char kDailyContentLengthShortBypassWithDataReductionProxyEnabled[];
17 extern const char kDailyContentLengthUnknownWithDataReductionProxyEnabled[];
18 extern const char kDailyContentLengthViaDataReductionProxy[];
19 extern const char kDailyContentLengthWithDataReductionProxyEnabled[];
20 extern const char kDailyHttpContentLengthLastUpdateDate[];
21 extern const char kDailyHttpOriginalContentLength[];
22 extern const char kDailyHttpReceivedContentLength[];
23 extern const char kDailyOriginalContentLengthViaDataReductionProxy[];
24 extern const char kDailyOriginalContentLengthWithDataReductionProxyEnabled[];
25 extern const char kDataReductionProxy[];
26 extern const char kDataReductionProxyEnabled[];
27 extern const char kDataReductionProxyAltEnabled[];
28 extern const char kDataReductionProxyWasEnabledBefore[];
29 extern const char kHttpOriginalContentLength[];
30 extern const char kHttpReceivedContentLength[];
31 
32 }  // namespace prefs
33 }  // namespace data_reduction_proxy
34 
35 #endif  // COMPONENTS_DATA_REDUCTION_PROXY_COMMON_DATA_REDUCTION_PROXY_PREF_NAMES_H_
36