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

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

Issue 109743002: Move policy code into components/policy. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: moar fixes Created 7 years 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
« no previous file with comments | « chrome/browser/policy/policy_service_stub.cc ('k') | chrome/browser/policy/policy_statistics_collector.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
deleted file mode 100644
index e0444ccfe01325e45647e8ba72d66f1b7de4b36d..0000000000000000000000000000000000000000
--- a/chrome/browser/policy/policy_statistics_collector.h
+++ /dev/null
@@ -1,68 +0,0 @@
-// 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/basictypes.h"
-#include "base/cancelable_callback.h"
-#include "base/memory/ref_counted.h"
-#include "base/time/time.h"
-#include "components/policy/core/common/policy_details.h"
-#include "components/policy/core/common/schema.h"
-
-class PrefService;
-class PrefRegistrySimple;
-
-namespace base {
-class TaskRunner;
-}
-
-namespace policy {
-
-class PolicyService;
-
-// Manages regular updates of policy usage UMA histograms.
-class PolicyStatisticsCollector {
- public:
- // Policy usage statistics update rate, in milliseconds.
- static const int kStatisticsUpdateRate;
-
- // Neither |policy_service| nor |prefs| can be NULL and must stay valid
- // throughout the lifetime of PolicyStatisticsCollector.
- PolicyStatisticsCollector(const GetChromePolicyDetailsCallback& get_details,
- const Schema& chrome_schema,
- PolicyService* policy_service,
- PrefService* prefs,
- const scoped_refptr<base::TaskRunner>& task_runner);
- virtual ~PolicyStatisticsCollector();
-
- // Completes initialization and starts periodical statistic updates.
- void Initialize();
-
- static void RegisterPrefs(PrefRegistrySimple* registry);
-
- protected:
- // protected virtual for mocking.
- virtual void RecordPolicyUse(int id);
-
- private:
- void CollectStatistics();
- void ScheduleUpdate(base::TimeDelta delay);
-
- GetChromePolicyDetailsCallback get_details_;
- Schema chrome_schema_;
- PolicyService* policy_service_;
- PrefService* prefs_;
-
- base::CancelableClosure update_callback_;
-
- const scoped_refptr<base::TaskRunner> task_runner_;
-
- DISALLOW_COPY_AND_ASSIGN(PolicyStatisticsCollector);
-};
-
-} // namespace policy
-
-#endif // CHROME_BROWSER_POLICY_POLICY_STATISTICS_COLLECTOR_H_
« no previous file with comments | « chrome/browser/policy/policy_service_stub.cc ('k') | chrome/browser/policy/policy_statistics_collector.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698