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

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

Issue 956223002: Rename DataReductionProxyUsageStats to DataReductionProxyBypassStats (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 side-by-side diff with in-line comments
Download patch
Index: components/data_reduction_proxy/core/browser/data_reduction_proxy_io_data.h
diff --git a/components/data_reduction_proxy/core/browser/data_reduction_proxy_io_data.h b/components/data_reduction_proxy/core/browser/data_reduction_proxy_io_data.h
index 0403c0a72dae59457c495c40a9d7e4feeea6d7e3..0c06c3e79c29604a7a35576ad07b664655a9c0d5 100644
--- a/components/data_reduction_proxy/core/browser/data_reduction_proxy_io_data.h
+++ b/components/data_reduction_proxy/core/browser/data_reduction_proxy_io_data.h
@@ -25,7 +25,7 @@ class DataReductionProxyConfigurator;
class DataReductionProxyEventStore;
class DataReductionProxyService;
class DataReductionProxyStatisticsPrefs;
-class DataReductionProxyUsageStats;
+class DataReductionProxyBypassStats;
// Contains and initializes all Data Reduction Proxy objects that operate on
// the IO thread.
@@ -99,8 +99,8 @@ class DataReductionProxyIOData {
}
// Used for testing.
- DataReductionProxyUsageStats* usage_stats() const {
- return usage_stats_.get();
+ DataReductionProxyBypassStats* bypass_stats() const {
+ return bypass_stats_.get();
}
DataReductionProxyDebugUIService* debug_ui_service() const {
@@ -145,7 +145,7 @@ class DataReductionProxyIOData {
base::WeakPtr<DataReductionProxyService> service_;
// Tracker of various metrics to be reported in UMA.
- scoped_ptr<DataReductionProxyUsageStats> usage_stats_;
+ scoped_ptr<DataReductionProxyBypassStats> bypass_stats_;
// Constructs credentials suitable for authenticating the client.
scoped_ptr<DataReductionProxyRequestOptions> request_options_;

Powered by Google App Engine
This is Rietveld 408576698