| OLD | NEW |
| 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 COMPONENTS_POLICY_CORE_COMMON_POLICY_STATISTICS_COLLECTOR_H_ | 5 #ifndef COMPONENTS_POLICY_CORE_COMMON_POLICY_STATISTICS_COLLECTOR_H_ |
| 6 #define COMPONENTS_POLICY_CORE_COMMON_POLICY_STATISTICS_COLLECTOR_H_ | 6 #define COMPONENTS_POLICY_CORE_COMMON_POLICY_STATISTICS_COLLECTOR_H_ |
| 7 | 7 |
| 8 #include "base/basictypes.h" | |
| 9 #include "base/cancelable_callback.h" | 8 #include "base/cancelable_callback.h" |
| 9 #include "base/macros.h" |
| 10 #include "base/memory/ref_counted.h" | 10 #include "base/memory/ref_counted.h" |
| 11 #include "base/time/time.h" | 11 #include "base/time/time.h" |
| 12 #include "components/policy/core/common/policy_details.h" | 12 #include "components/policy/core/common/policy_details.h" |
| 13 #include "components/policy/core/common/schema.h" | 13 #include "components/policy/core/common/schema.h" |
| 14 #include "components/policy/policy_export.h" | 14 #include "components/policy/policy_export.h" |
| 15 | 15 |
| 16 class PrefService; | 16 class PrefService; |
| 17 class PrefRegistrySimple; | 17 class PrefRegistrySimple; |
| 18 | 18 |
| 19 namespace base { | 19 namespace base { |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 60 base::CancelableClosure update_callback_; | 60 base::CancelableClosure update_callback_; |
| 61 | 61 |
| 62 const scoped_refptr<base::TaskRunner> task_runner_; | 62 const scoped_refptr<base::TaskRunner> task_runner_; |
| 63 | 63 |
| 64 DISALLOW_COPY_AND_ASSIGN(PolicyStatisticsCollector); | 64 DISALLOW_COPY_AND_ASSIGN(PolicyStatisticsCollector); |
| 65 }; | 65 }; |
| 66 | 66 |
| 67 } // namespace policy | 67 } // namespace policy |
| 68 | 68 |
| 69 #endif // COMPONENTS_POLICY_CORE_COMMON_POLICY_STATISTICS_COLLECTOR_H_ | 69 #endif // COMPONENTS_POLICY_CORE_COMMON_POLICY_STATISTICS_COLLECTOR_H_ |
| OLD | NEW |