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

Side by Side Diff: chrome/browser/policy/policy_statistics_collector.h

Issue 11741003: Remove PrefServiceSimple, replacing it with PrefService and PrefRegistrySimple. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix double registration in Chrome Frame test. Created 7 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_BROWSER_POLICY_POLICY_STATISTICS_COLLECTOR_H_ 5 #ifndef CHROME_BROWSER_POLICY_POLICY_STATISTICS_COLLECTOR_H_
6 #define CHROME_BROWSER_POLICY_POLICY_STATISTICS_COLLECTOR_H_ 6 #define CHROME_BROWSER_POLICY_POLICY_STATISTICS_COLLECTOR_H_
7 7
8 #include "base/basictypes.h" 8 #include "base/basictypes.h"
9 #include "base/cancelable_callback.h" 9 #include "base/cancelable_callback.h"
10 #include "base/memory/ref_counted.h" 10 #include "base/memory/ref_counted.h"
11 #include "base/time.h" 11 #include "base/time.h"
12 12
13 class PrefService; 13 class PrefService;
14 class PrefServiceSimple; 14 class PrefRegistrySimple;
15 15
16 namespace base { 16 namespace base {
17 class TaskRunner; 17 class TaskRunner;
18 } 18 }
19 19
20 namespace policy { 20 namespace policy {
21 21
22 class PolicyService; 22 class PolicyService;
23 23
24 // Manages regular updates of policy usage UMA histograms. 24 // Manages regular updates of policy usage UMA histograms.
25 class PolicyStatisticsCollector { 25 class PolicyStatisticsCollector {
26 public: 26 public:
27 // Policy usage statistics update rate, in milliseconds. 27 // Policy usage statistics update rate, in milliseconds.
28 static const int kStatisticsUpdateRate; 28 static const int kStatisticsUpdateRate;
29 29
30 // Neither |policy_service| nor |prefs| can be NULL and must stay valid 30 // Neither |policy_service| nor |prefs| can be NULL and must stay valid
31 // throughout the lifetime of PolicyStatisticsCollector. 31 // throughout the lifetime of PolicyStatisticsCollector.
32 PolicyStatisticsCollector(PolicyService* policy_service, 32 PolicyStatisticsCollector(PolicyService* policy_service,
33 PrefService* prefs, 33 PrefService* prefs,
34 const scoped_refptr<base::TaskRunner>& task_runner); 34 const scoped_refptr<base::TaskRunner>& task_runner);
35 virtual ~PolicyStatisticsCollector(); 35 virtual ~PolicyStatisticsCollector();
36 36
37 // Completes initialization and starts periodical statistic updates. 37 // Completes initialization and starts periodical statistic updates.
38 void Initialize(); 38 void Initialize();
39 39
40 static void RegisterPrefs(PrefServiceSimple* prefs); 40 static void RegisterPrefs(PrefRegistrySimple* registry);
41 41
42 protected: 42 protected:
43 // protected virtual for mocking. 43 // protected virtual for mocking.
44 virtual void RecordPolicyUse(int id); 44 virtual void RecordPolicyUse(int id);
45 45
46 private: 46 private:
47 void CollectStatistics(); 47 void CollectStatistics();
48 void ScheduleUpdate(base::TimeDelta delay); 48 void ScheduleUpdate(base::TimeDelta delay);
49 49
50 int max_policy_id_; 50 int max_policy_id_;
51 51
52 PolicyService* policy_service_; 52 PolicyService* policy_service_;
53 PrefService* prefs_; 53 PrefService* prefs_;
54 54
55 base::CancelableClosure update_callback_; 55 base::CancelableClosure update_callback_;
56 56
57 const scoped_refptr<base::TaskRunner> task_runner_; 57 const scoped_refptr<base::TaskRunner> task_runner_;
58 58
59 DISALLOW_COPY_AND_ASSIGN(PolicyStatisticsCollector); 59 DISALLOW_COPY_AND_ASSIGN(PolicyStatisticsCollector);
60 }; 60 };
61 61
62 } // namespace policy 62 } // namespace policy
63 63
64 #endif // CHROME_BROWSER_POLICY_POLICY_STATISTICS_COLLECTOR_H_ 64 #endif // CHROME_BROWSER_POLICY_POLICY_STATISTICS_COLLECTOR_H_
OLDNEW
« no previous file with comments | « chrome/browser/policy/device_status_collector_browsertest.cc ('k') | chrome/browser/policy/policy_statistics_collector.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698