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

Unified Diff: components/browsing_data/counters/browsing_data_counter.cc

Issue 2084903002: Moved BrowsingDataCounter and part of BrowsingDataCounterUtils to components. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Updated Android code Created 4 years, 6 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/browsing_data/counters/browsing_data_counter.cc
diff --git a/components/browsing_data/counters/browsing_data_counter.cc b/components/browsing_data/counters/browsing_data_counter.cc
new file mode 100644
index 0000000000000000000000000000000000000000..5e5c0e4fce35071d19d3e6151984e0b9775647e3
--- /dev/null
+++ b/components/browsing_data/counters/browsing_data_counter.cc
@@ -0,0 +1,101 @@
+// Copyright 2015 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "components/browsing_data/counters/browsing_data_counter.h"
+
+#include <utility>
+
+#include "base/memory/ptr_util.h"
+#include "components/browsing_data/browsing_data_utils.h"
+#include "components/browsing_data/pref_names.h"
+#include "components/prefs/pref_service.h"
+
+namespace browsing_data {
+
+BrowsingDataCounter::BrowsingDataCounter(const std::string& pref_name)
+ : pref_name_(pref_name) {}
+
+BrowsingDataCounter::~BrowsingDataCounter() {}
+
+void BrowsingDataCounter::Init(PrefService* pref_service,
+ const Callback& callback) {
+ DCHECK(!initialized_);
+ callback_ = callback;
+ pref_service_ = pref_service;
+ pref_.Init(GetPrefName(), pref_service_,
+ base::Bind(&BrowsingDataCounter::Restart, base::Unretained(this)));
+ period_.Init(
+ browsing_data::prefs::kDeleteTimePeriod, pref_service_,
+ base::Bind(&BrowsingDataCounter::Restart, base::Unretained(this)));
+
+ initialized_ = true;
+ OnInitialized();
+}
+
+void BrowsingDataCounter::OnInitialized() {}
+
+base::Time BrowsingDataCounter::GetPeriodStart() {
+ return CalculateBeginDeleteTime(static_cast<TimePeriod>(*period_));
+}
+
+void BrowsingDataCounter::Restart() {
+ DCHECK(initialized_);
+
+ // If this data type was unchecked for deletion, we do not need to count it.
+ if (!pref_service_->GetBoolean(GetPrefName()))
+ return;
+
+ callback_.Run(base::WrapUnique(new Result(this)));
+
+ Count();
+}
+
+void BrowsingDataCounter::ReportResult(ResultInt value) {
+ DCHECK(initialized_);
+ callback_.Run(base::WrapUnique(new FinishedResult(this, value)));
+}
+
+void BrowsingDataCounter::ReportResult(std::unique_ptr<Result> result) {
+ DCHECK(initialized_);
+ callback_.Run(std::move(result));
+}
+
+const std::string& BrowsingDataCounter::GetPrefName() const {
+ return pref_name_;
+}
+
+PrefService* BrowsingDataCounter::GetPrefs() const {
+ return pref_service_;
+}
+
+// BrowsingDataCounter::Result -------------------------------------------------
+
+BrowsingDataCounter::Result::Result(const BrowsingDataCounter* source)
+ : source_(source) {}
+
+BrowsingDataCounter::Result::~Result() {}
+
+bool BrowsingDataCounter::Result::Finished() const {
+ return false;
+}
+
+// BrowsingDataCounter::FinishedResult -----------------------------------------
+
+BrowsingDataCounter::FinishedResult::FinishedResult(
+ const BrowsingDataCounter* source,
+ ResultInt value)
+ : Result(source), value_(value) {}
+
+BrowsingDataCounter::FinishedResult::~FinishedResult() {}
+
+bool BrowsingDataCounter::FinishedResult::Finished() const {
+ return true;
+}
+
+BrowsingDataCounter::ResultInt BrowsingDataCounter::FinishedResult::Value()
+ const {
+ return value_;
+}
+
+} // namespace browsing_data

Powered by Google App Engine
This is Rietveld 408576698