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 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/time.h" |
12 | 12 |
13 class PrefService; | 13 class PrefService; |
14 class PrefRegistrySimple; | 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 |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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_ |
OLD | NEW |