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

Unified Diff: components/data_reduction_proxy/core/browser/data_reduction_proxy_network_delegate.h

Issue 1683953002: Remove unused DataReductionProxy code (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 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 side-by-side diff with in-line comments
Download patch
Index: components/data_reduction_proxy/core/browser/data_reduction_proxy_network_delegate.h
diff --git a/components/data_reduction_proxy/core/browser/data_reduction_proxy_network_delegate.h b/components/data_reduction_proxy/core/browser/data_reduction_proxy_network_delegate.h
index 873ece2900bb65c0017f5d19091c96c1c6fd9938..4611e5e091122cec494b8d65d0dc03ae6b1ff377 100644
--- a/components/data_reduction_proxy/core/browser/data_reduction_proxy_network_delegate.h
+++ b/components/data_reduction_proxy/core/browser/data_reduction_proxy_network_delegate.h
@@ -40,7 +40,6 @@ class DataReductionProxyBypassStats;
class DataReductionProxyConfig;
class DataReductionProxyConfigurator;
class DataReductionProxyEventCreator;
-class DataReductionProxyExperimentsStats;
class DataReductionProxyIOData;
class DataReductionProxyRequestOptions;
@@ -65,16 +64,15 @@ class DataReductionProxyNetworkDelegate : public net::LayeredNetworkDelegate {
// Constructs a DataReductionProxyNetworkdelegate object with the given
// |network_delegate|, |config|, |handler|, |configurator|,
- // |experiments_stats|, |net_log|, and |event_creator|. Takes ownership of
- // and wraps the |network_delegate|, calling an internal implementation for
- // each delegate method. For example, the implementation of
- // OnHeadersReceived() calls OnHeadersReceivedInternal().
+ // |net_log|, and |event_creator|. Takes ownership of and wraps the
+ // |network_delegate|, calling an internal implementation for each delegate
+ // method. For example, the implementation of OnHeadersReceived() calls
+ // OnHeadersReceivedInternal().
DataReductionProxyNetworkDelegate(
scoped_ptr<net::NetworkDelegate> network_delegate,
DataReductionProxyConfig* config,
DataReductionProxyRequestOptions* handler,
const DataReductionProxyConfigurator* configurator,
- DataReductionProxyExperimentsStats* experiments_stats,
net::NetLog* net_log,
DataReductionProxyEventCreator* event_creator);
~DataReductionProxyNetworkDelegate() override;
@@ -165,8 +163,6 @@ class DataReductionProxyNetworkDelegate : public net::LayeredNetworkDelegate {
const DataReductionProxyConfigurator* configurator_;
- DataReductionProxyExperimentsStats* experiments_stats_;
-
net::NetLog* net_log_;
DataReductionProxyEventCreator* event_creator_;

Powered by Google App Engine
This is Rietveld 408576698