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

Unified Diff: chrome/browser/policy/policy_statistics_collector.h

Issue 10916235: Record policy usage statistics every 24 hours. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Updated comment Created 8 years, 3 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: chrome/browser/policy/policy_statistics_collector.h
diff --git a/chrome/browser/policy/policy_statistics_collector.h b/chrome/browser/policy/policy_statistics_collector.h
new file mode 100644
index 0000000000000000000000000000000000000000..900edc8184f94900d6c3e56ad5ade26bebcfd3bf
--- /dev/null
+++ b/chrome/browser/policy/policy_statistics_collector.h
@@ -0,0 +1,48 @@
+// Copyright (c) 2012 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_POLICY_POLICY_STATISTICS_COLLECTOR_H_
+#define CHROME_BROWSER_POLICY_POLICY_STATISTICS_COLLECTOR_H_
+
+#include "base/cancelable_callback.h"
+#include "base/memory/ref_counted.h"
+#include "base/time.h"
+
+class PrefService;
+
+namespace base {
+class TaskRunner;
+}
+
+namespace policy {
+
+class PolicyService;
+
+// Manages regular updates of policy usage statistics.
Mattias Nissler (ping if slow) 2012/09/12 13:06:27 You should mention UMA somewhere, since this is th
qfel 2012/09/18 11:30:56 Done.
+class PolicyStatisticsCollector {
+ public:
+ // Neither |policy_service| nor |prefs| can be NULL and must stay valid
+ // throughout the lifetime of PolicyStatisticsCollector.
+ PolicyStatisticsCollector(PolicyService* policy_service,
+ PrefService* prefs,
+ const scoped_refptr<base::TaskRunner>& task_runner);
+ ~PolicyStatisticsCollector();
+
+ static void RegisterPrefs(PrefService* prefs);
+
+ private:
+ void CollectStatistics();
+ void ScheduleUpdate(base::TimeDelta delay);
+
+ PolicyService* policy_service_;
+ PrefService* prefs_;
+
+ base::CancelableClosure update_callback_;
+
+ const scoped_refptr<base::TaskRunner> task_runner_;
Mattias Nissler (ping if slow) 2012/09/12 13:06:27 DISALLOW_COPY_AND_ASSIGN
qfel 2012/09/18 11:30:56 Done.
+};
+
+} // namespace policy
+
+#endif // CHROME_BROWSER_POLICY_POLICY_STATISTICS_COLLECTOR_H_

Powered by Google App Engine
This is Rietveld 408576698