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_ASYNC_POLICY_LOADER_H_ | 5 #ifndef CHROME_BROWSER_POLICY_ASYNC_POLICY_LOADER_H_ |
6 #define CHROME_BROWSER_POLICY_ASYNC_POLICY_LOADER_H_ | 6 #define CHROME_BROWSER_POLICY_ASYNC_POLICY_LOADER_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 | 9 |
10 #include "base/callback.h" | 10 #include "base/callback.h" |
11 #include "base/memory/ref_counted.h" | 11 #include "base/memory/ref_counted.h" |
12 #include "base/memory/scoped_ptr.h" | 12 #include "base/memory/scoped_ptr.h" |
13 #include "base/memory/weak_ptr.h" | 13 #include "base/memory/weak_ptr.h" |
14 #include "base/time/time.h" | 14 #include "base/time/time.h" |
15 #include "chrome/browser/policy/policy_service.h" | 15 #include "components/policy/core/common/policy_namespace.h" |
16 | 16 |
17 namespace base { | 17 namespace base { |
18 class SequencedTaskRunner; | 18 class SequencedTaskRunner; |
19 } | 19 } |
20 | 20 |
21 namespace policy { | 21 namespace policy { |
22 | 22 |
23 class PolicyBundle; | 23 class PolicyBundle; |
24 class PolicyDomainDescriptor; | 24 class PolicyDomainDescriptor; |
25 | 25 |
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
123 | 123 |
124 // A map of the currently registered domains and their descriptors. | 124 // A map of the currently registered domains and their descriptors. |
125 DescriptorMap descriptor_map_; | 125 DescriptorMap descriptor_map_; |
126 | 126 |
127 DISALLOW_COPY_AND_ASSIGN(AsyncPolicyLoader); | 127 DISALLOW_COPY_AND_ASSIGN(AsyncPolicyLoader); |
128 }; | 128 }; |
129 | 129 |
130 } // namespace policy | 130 } // namespace policy |
131 | 131 |
132 #endif // CHROME_BROWSER_POLICY_ASYNC_POLICY_LOADER_H_ | 132 #endif // CHROME_BROWSER_POLICY_ASYNC_POLICY_LOADER_H_ |
OLD | NEW |