blob: 897983ce1f2f002c2421d3faf4cac081d61c44f7 (
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
|
// Copyright (c) 2013 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.
#ifndef CHROME_BROWSER_METRICS_VARIATIONS_VARIATIONS_REQUEST_SCHEDULER_H_
#define CHROME_BROWSER_METRICS_VARIATIONS_VARIATIONS_REQUEST_SCHEDULER_H_
#include "base/bind.h"
#include "base/timer.h"
class PrefService;
namespace chrome_variations {
// A helper class that makes VariationsService requests at the correct times.
class VariationsRequestScheduler {
public:
virtual ~VariationsRequestScheduler();
// Starts the task on a schedule.
virtual void Start();
// Resets the scheduler if it is currently on a timer.
virtual void Reset();
// Factory method for this class.
static VariationsRequestScheduler* Create(const base::Closure& task,
PrefService* local_state);
protected:
// |task| is the closure to call when the scheduler deems ready.
explicit VariationsRequestScheduler(const base::Closure& task);
// Getter for derived classes.
base::Closure task() const;
private:
// The task scheduled by this class.
base::Closure task_;
// The timer used to repeatedly ping the server. Keep this as an instance
// member so if VariationsRequestScheduler goes out of scope, the timer is
// automatically canceled.
base::RepeatingTimer<VariationsRequestScheduler> timer_;
DISALLOW_COPY_AND_ASSIGN(VariationsRequestScheduler);
};
} // namespace chrome_variations
#endif // CHROME_BROWSER_METRICS_VARIATIONS_VARIATIONS_REQUEST_SCHEDULER_H_
|