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

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

Issue 956223002: Rename DataReductionProxyUsageStats to DataReductionProxyBypassStats (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: nits 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 side-by-side diff with in-line comments
Download patch
Index: components/data_reduction_proxy/core/browser/data_reduction_proxy_interceptor.h
diff --git a/components/data_reduction_proxy/core/browser/data_reduction_proxy_interceptor.h b/components/data_reduction_proxy/core/browser/data_reduction_proxy_interceptor.h
index 0e248146a6a0ed383a997ed237d2c59b41387a13..ab7ece8a5a5214e86b71f6c998f9c5f1ffff67ff 100644
--- a/components/data_reduction_proxy/core/browser/data_reduction_proxy_interceptor.h
+++ b/components/data_reduction_proxy/core/browser/data_reduction_proxy_interceptor.h
@@ -12,7 +12,7 @@ namespace data_reduction_proxy {
class DataReductionProxyBypassProtocol;
class DataReductionProxyConfig;
class DataReductionProxyEventStore;
-class DataReductionProxyUsageStats;
+class DataReductionProxyBypassStats;
// Used to intercept responses that contain explicit and implicit signals
// to bypass the Data Reduction Proxy. If the proxy should be bypassed,
@@ -23,7 +23,7 @@ class DataReductionProxyInterceptor : public net::URLRequestInterceptor {
// Constructs the interceptor. |config|, |stats|, and |event_store| must
// outlive |this|. |stats| may be NULL.
DataReductionProxyInterceptor(DataReductionProxyConfig* config,
- DataReductionProxyUsageStats* stats,
+ DataReductionProxyBypassStats* stats,
DataReductionProxyEventStore* event_store);
// Destroys the interceptor.
@@ -57,7 +57,7 @@ class DataReductionProxyInterceptor : public net::URLRequestInterceptor {
net::URLRequest* request, net::NetworkDelegate* network_delegate) const;
// Must outlive |this| if non-NULL.
- DataReductionProxyUsageStats* usage_stats_;
+ DataReductionProxyBypassStats* bypass_stats_;
// Object responsible for identifying cases when a response should cause the
// data reduction proxy to be bypassed, and for triggering proxy bypasses in

Powered by Google App Engine
This is Rietveld 408576698