Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(577)

Side by Side Diff: components/data_reduction_proxy/core/browser/data_reduction_proxy_io_data.h

Issue 949533004: Rename DataReductionProxyStatisticsPrefs to DataReductionProxyCompressionStats (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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_CORE_BROWSER_DATA_REDUCTION_PROXY_IO_DAT A_H_ 5 #ifndef COMPONENTS_DATA_REDUCTION_PROXY_CORE_BROWSER_DATA_REDUCTION_PROXY_IO_DAT A_H_
6 #define COMPONENTS_DATA_REDUCTION_PROXY_CORE_BROWSER_DATA_REDUCTION_PROXY_IO_DAT A_H_ 6 #define COMPONENTS_DATA_REDUCTION_PROXY_CORE_BROWSER_DATA_REDUCTION_PROXY_IO_DAT A_H_
7 7
8 #include "base/memory/scoped_ptr.h" 8 #include "base/memory/scoped_ptr.h"
9 #include "base/memory/weak_ptr.h" 9 #include "base/memory/weak_ptr.h"
10 #include "base/prefs/pref_member.h" 10 #include "base/prefs/pref_member.h"
11 #include "components/data_reduction_proxy/core/browser/data_reduction_proxy_debu g_ui_service.h" 11 #include "components/data_reduction_proxy/core/browser/data_reduction_proxy_debu g_ui_service.h"
12 #include "components/data_reduction_proxy/core/browser/data_reduction_proxy_dele gate.h" 12 #include "components/data_reduction_proxy/core/browser/data_reduction_proxy_dele gate.h"
13 #include "components/data_reduction_proxy/core/browser/data_reduction_proxy_netw ork_delegate.h" 13 #include "components/data_reduction_proxy/core/browser/data_reduction_proxy_netw ork_delegate.h"
14 #include "components/data_reduction_proxy/core/browser/data_reduction_proxy_requ est_options.h" 14 #include "components/data_reduction_proxy/core/browser/data_reduction_proxy_requ est_options.h"
15 15
16 namespace net { 16 namespace net {
17 class NetLog; 17 class NetLog;
18 class URLRequestInterceptor; 18 class URLRequestInterceptor;
19 } 19 }
20 20
21 namespace data_reduction_proxy { 21 namespace data_reduction_proxy {
22 22
23 class DataReductionProxyConfig; 23 class DataReductionProxyConfig;
24 class DataReductionProxyConfigurator; 24 class DataReductionProxyConfigurator;
25 class DataReductionProxyEventStore; 25 class DataReductionProxyEventStore;
26 class DataReductionProxyService; 26 class DataReductionProxyService;
27 class DataReductionProxyStatisticsPrefs;
28 class DataReductionProxyUsageStats; 27 class DataReductionProxyUsageStats;
29 28
30 // Contains and initializes all Data Reduction Proxy objects that operate on 29 // Contains and initializes all Data Reduction Proxy objects that operate on
31 // the IO thread. 30 // the IO thread.
32 class DataReductionProxyIOData { 31 class DataReductionProxyIOData {
33 public: 32 public:
34 // Constructs a DataReductionProxyIOData object. |param_flags| is used to 33 // Constructs a DataReductionProxyIOData object. |param_flags| is used to
35 // set information about the DNS names used by the proxy, and allowable 34 // set information about the DNS names used by the proxy, and allowable
36 // configurations. 35 // configurations.
37 DataReductionProxyIOData( 36 DataReductionProxyIOData(
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after
163 // Preference that determines if the Data Reduction Proxy has been enabled 162 // Preference that determines if the Data Reduction Proxy has been enabled
164 // by the user. In practice, this can be overridden by the command line. 163 // by the user. In practice, this can be overridden by the command line.
165 BooleanPrefMember enabled_; 164 BooleanPrefMember enabled_;
166 165
167 DISALLOW_COPY_AND_ASSIGN(DataReductionProxyIOData); 166 DISALLOW_COPY_AND_ASSIGN(DataReductionProxyIOData);
168 }; 167 };
169 168
170 } // namespace data_reduction_proxy 169 } // namespace data_reduction_proxy
171 #endif // COMPONENTS_DATA_REDUCTION_PROXY_CORE_BROWSER_DATA_REDUCTION_PROXY_IO_ DATA_H_ 170 #endif // COMPONENTS_DATA_REDUCTION_PROXY_CORE_BROWSER_DATA_REDUCTION_PROXY_IO_ DATA_H_
172 171
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698