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

Unified Diff: components/data_reduction_proxy/core/browser/data_reduction_proxy_compression_stats.cc

Issue 949533004: Rename DataReductionProxyStatisticsPrefs to DataReductionProxyCompressionStats (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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_compression_stats.cc
diff --git a/components/data_reduction_proxy/core/browser/data_reduction_proxy_statistics_prefs.cc b/components/data_reduction_proxy/core/browser/data_reduction_proxy_compression_stats.cc
similarity index 79%
rename from components/data_reduction_proxy/core/browser/data_reduction_proxy_statistics_prefs.cc
rename to components/data_reduction_proxy/core/browser/data_reduction_proxy_compression_stats.cc
index 1b28d5d7143431b346983af40e954d722b8eca85..c852c4d4943d2abcd0b1491a28dcf2c8de514558 100644
--- a/components/data_reduction_proxy/core/browser/data_reduction_proxy_statistics_prefs.cc
+++ b/components/data_reduction_proxy/core/browser/data_reduction_proxy_compression_stats.cc
@@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#include "components/data_reduction_proxy/core/browser/data_reduction_proxy_statistics_prefs.h"
+#include "components/data_reduction_proxy/core/browser/data_reduction_proxy_compression_stats.h"
#include "base/bind.h"
#include "base/location.h"
@@ -17,7 +17,7 @@
namespace data_reduction_proxy {
-DataReductionProxyStatisticsPrefs::DataReductionProxyStatisticsPrefs(
+DataReductionProxyCompressionStats::DataReductionProxyCompressionStats(
PrefService* prefs,
scoped_refptr<base::SequencedTaskRunner> task_runner,
const base::TimeDelta& delay)
@@ -32,14 +32,14 @@ DataReductionProxyStatisticsPrefs::DataReductionProxyStatisticsPrefs(
Init();
}
-DataReductionProxyStatisticsPrefs::~DataReductionProxyStatisticsPrefs() {
+DataReductionProxyCompressionStats::~DataReductionProxyCompressionStats() {
DCHECK(thread_checker_.CalledOnValidThread());
WritePrefs();
pref_change_registrar_->RemoveAll();
weak_factory_.InvalidateWeakPtrs();
}
-void DataReductionProxyStatisticsPrefs::Init() {
+void DataReductionProxyCompressionStats::Init() {
DCHECK(thread_checker_.CalledOnValidThread());
if (delay_ == base::TimeDelta())
return;
@@ -71,12 +71,13 @@ void DataReductionProxyStatisticsPrefs::Init() {
kDailyOriginalContentLengthWithDataReductionProxyEnabled);
pref_change_registrar_->Init(pref_service_);
- pref_change_registrar_->Add(prefs::kUpdateDailyReceivedContentLengths,
- base::Bind(&DataReductionProxyStatisticsPrefs::OnUpdateContentLengths,
+ pref_change_registrar_->Add(
+ prefs::kUpdateDailyReceivedContentLengths,
+ base::Bind(&DataReductionProxyCompressionStats::OnUpdateContentLengths,
GetWeakPtr()));
}
-void DataReductionProxyStatisticsPrefs::OnUpdateContentLengths() {
+void DataReductionProxyCompressionStats::OnUpdateContentLengths() {
DCHECK(thread_checker_.CalledOnValidThread());
if (!pref_service_->GetBoolean(prefs::kUpdateDailyReceivedContentLengths))
return;
@@ -85,18 +86,18 @@ void DataReductionProxyStatisticsPrefs::OnUpdateContentLengths() {
pref_service_->SetBoolean(prefs::kUpdateDailyReceivedContentLengths, false);
}
-void DataReductionProxyStatisticsPrefs::InitInt64Pref(const char* pref) {
+void DataReductionProxyCompressionStats::InitInt64Pref(const char* pref) {
int64 pref_value = pref_service_->GetInt64(pref);
pref_map_[pref] = pref_value;
}
-void DataReductionProxyStatisticsPrefs::InitListPref(const char* pref) {
+void DataReductionProxyCompressionStats::InitListPref(const char* pref) {
scoped_ptr<base::ListValue> pref_value = scoped_ptr<base::ListValue>(
pref_service_->GetList(pref)->DeepCopy());
list_pref_map_.add(pref, pref_value.Pass());
}
-int64 DataReductionProxyStatisticsPrefs::GetInt64(const char* pref_path) {
+int64 DataReductionProxyCompressionStats::GetInt64(const char* pref_path) {
if (delay_ == base::TimeDelta())
return pref_service_->GetInt64(pref_path);
@@ -104,8 +105,8 @@ int64 DataReductionProxyStatisticsPrefs::GetInt64(const char* pref_path) {
return iter->second;
}
-void DataReductionProxyStatisticsPrefs::SetInt64(const char* pref_path,
- int64 pref_value) {
+void DataReductionProxyCompressionStats::SetInt64(const char* pref_path,
+ int64 pref_value) {
if (delay_ == base::TimeDelta()) {
pref_service_->SetInt64(pref_path, pref_value);
return;
@@ -115,7 +116,7 @@ void DataReductionProxyStatisticsPrefs::SetInt64(const char* pref_path,
pref_map_[pref_path] = pref_value;
}
-base::ListValue* DataReductionProxyStatisticsPrefs::GetList(
+base::ListValue* DataReductionProxyCompressionStats::GetList(
const char* pref_path) {
if (delay_ == base::TimeDelta())
return ListPrefUpdate(pref_service_, pref_path).Get();
@@ -124,7 +125,7 @@ base::ListValue* DataReductionProxyStatisticsPrefs::GetList(
return list_pref_map_.get(pref_path);
}
-void DataReductionProxyStatisticsPrefs::WritePrefs() {
+void DataReductionProxyCompressionStats::WritePrefs() {
DCHECK(thread_checker_.CalledOnValidThread());
if (delay_ == base::TimeDelta())
return;
@@ -143,21 +144,20 @@ void DataReductionProxyStatisticsPrefs::WritePrefs() {
delayed_task_posted_ = false;
}
-void DataReductionProxyStatisticsPrefs::DelayedWritePrefs() {
+void DataReductionProxyCompressionStats::DelayedWritePrefs() {
// Only write after the first time posting the task.
if (delayed_task_posted_)
return;
task_runner_->PostDelayedTask(
FROM_HERE,
- base::Bind(&DataReductionProxyStatisticsPrefs::WritePrefs,
- GetWeakPtr()),
- delay_);
+ base::Bind(&DataReductionProxyCompressionStats::WritePrefs, GetWeakPtr()),
+ delay_);
delayed_task_posted_ = true;
}
-void DataReductionProxyStatisticsPrefs::TransferList(
+void DataReductionProxyCompressionStats::TransferList(
const base::ListValue& from_list,
base::ListValue* to_list) {
to_list->Clear();
@@ -167,7 +167,7 @@ void DataReductionProxyStatisticsPrefs::TransferList(
}
}
-int64 DataReductionProxyStatisticsPrefs::GetListPrefInt64Value(
+int64 DataReductionProxyCompressionStats::GetListPrefInt64Value(
const base::ListValue& list,
size_t index) {
std::string string_value;
@@ -182,8 +182,8 @@ int64 DataReductionProxyStatisticsPrefs::GetListPrefInt64Value(
return value;
}
-base::WeakPtr<DataReductionProxyStatisticsPrefs>
-DataReductionProxyStatisticsPrefs::GetWeakPtr() {
+base::WeakPtr<DataReductionProxyCompressionStats>
+DataReductionProxyCompressionStats::GetWeakPtr() {
return weak_factory_.GetWeakPtr();
}

Powered by Google App Engine
This is Rietveld 408576698