summaryrefslogtreecommitdiffstats
path: root/chrome/browser/browsing_data/browsing_data_counter.cc
blob: f469e661ddd5d886a2c48d5b6341833997e99d5d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
// Copyright (c) 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 "chrome/browser/browsing_data/browsing_data_counter.h"

#include <utility>

#include "chrome/browser/profiles/profile.h"
#include "chrome/common/pref_names.h"
#include "components/prefs/pref_service.h"

BrowsingDataCounter::BrowsingDataCounter() {}

BrowsingDataCounter::~BrowsingDataCounter() {
}

void BrowsingDataCounter::Init(
    Profile* profile,
    const Callback& callback) {
  DCHECK(!initialized_);
  profile_ = profile;
  callback_ = callback;
  pref_.Init(
      GetPrefName(),
      profile_->GetPrefs(),
      base::Bind(&BrowsingDataCounter::Restart,
                 base::Unretained(this)));
  period_.Init(
      prefs::kDeleteTimePeriod,
      profile_->GetPrefs(),
      base::Bind(&BrowsingDataCounter::Restart,
                 base::Unretained(this)));

  initialized_ = true;
  OnInitialized();
}

Profile* BrowsingDataCounter::GetProfile() const {
  return profile_;
}

void BrowsingDataCounter::OnInitialized() {
}

base::Time BrowsingDataCounter::GetPeriodStart() {
  return BrowsingDataRemover::CalculateBeginDeleteTime(
      static_cast<BrowsingDataRemover::TimePeriod>(*period_));
}

void BrowsingDataCounter::Restart() {
  DCHECK(initialized_);

  // If this data type was unchecked for deletion, we do not need to count it.
  if (!profile_->GetPrefs()->GetBoolean(GetPrefName()))
    return;

  callback_.Run(make_scoped_ptr(new Result(this)));

  Count();
}

void BrowsingDataCounter::ReportResult(ResultInt value) {
  DCHECK(initialized_);
  callback_.Run(make_scoped_ptr(new FinishedResult(this, value)));
}

void BrowsingDataCounter::ReportResult(scoped_ptr<Result> result) {
  DCHECK(initialized_);
  callback_.Run(std::move(result));
}

// 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_;
}