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_DEVICE_POLICY_CACHE_H_ | 5 #ifndef CHROME_BROWSER_POLICY_DEVICE_POLICY_CACHE_H_ |
6 #define CHROME_BROWSER_POLICY_DEVICE_POLICY_CACHE_H_ | 6 #define CHROME_BROWSER_POLICY_DEVICE_POLICY_CACHE_H_ |
7 | 7 |
8 #include "base/memory/weak_ptr.h" | 8 #include "base/memory/weak_ptr.h" |
9 #include "chrome/browser/chromeos/login/signed_settings.h" | 9 #include "chrome/browser/chromeos/settings/signed_settings.h" |
10 #include "chrome/browser/policy/cloud_policy_cache_base.h" | 10 #include "chrome/browser/policy/cloud_policy_cache_base.h" |
11 | 11 |
12 namespace chromeos { | 12 namespace chromeos { |
13 class SignedSettingsHelper; | 13 class SignedSettingsHelper; |
14 } // namespace chromeos | 14 } // namespace chromeos |
15 | 15 |
16 namespace enterprise_management { | 16 namespace enterprise_management { |
17 class ChromeDeviceSettingsProto; | 17 class ChromeDeviceSettingsProto; |
18 class PolicyData; | 18 class PolicyData; |
19 class PolicyFetchResponse; | 19 class PolicyFetchResponse; |
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
117 base::WeakPtrFactory<DevicePolicyCache> weak_ptr_factory_; | 117 base::WeakPtrFactory<DevicePolicyCache> weak_ptr_factory_; |
118 | 118 |
119 bool policy_fetch_pending_; | 119 bool policy_fetch_pending_; |
120 | 120 |
121 DISALLOW_COPY_AND_ASSIGN(DevicePolicyCache); | 121 DISALLOW_COPY_AND_ASSIGN(DevicePolicyCache); |
122 }; | 122 }; |
123 | 123 |
124 } // namespace policy | 124 } // namespace policy |
125 | 125 |
126 #endif // CHROME_BROWSER_POLICY_DEVICE_POLICY_CACHE_H_ | 126 #endif // CHROME_BROWSER_POLICY_DEVICE_POLICY_CACHE_H_ |
OLD | NEW |