OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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_CHROMEOS_EXTENSIONS_DEVICE_LOCAL_ACCOUNT_EXTERNAL_POLICY_
LOADER_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_EXTENSIONS_DEVICE_LOCAL_ACCOUNT_EXTERNAL_POLICY_
LOADER_H_ |
6 #define CHROME_BROWSER_CHROMEOS_EXTENSIONS_DEVICE_LOCAL_ACCOUNT_EXTERNAL_POLICY_
LOADER_H_ | 6 #define CHROME_BROWSER_CHROMEOS_EXTENSIONS_DEVICE_LOCAL_ACCOUNT_EXTERNAL_POLICY_
LOADER_H_ |
7 | 7 |
8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
9 #include "base/callback_forward.h" | 9 #include "base/callback_forward.h" |
10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
11 #include "base/files/file_path.h" | 11 #include "base/files/file_path.h" |
12 #include "base/memory/ref_counted.h" | 12 #include "base/memory/ref_counted.h" |
13 #include "base/memory/scoped_ptr.h" | 13 #include "base/memory/scoped_ptr.h" |
14 #include "base/sequenced_task_runner.h" | 14 #include "base/sequenced_task_runner.h" |
15 #include "chrome/browser/chromeos/extensions/external_cache.h" | 15 #include "chrome/browser/chromeos/extensions/external_cache.h" |
16 #include "chrome/browser/extensions/external_loader.h" | 16 #include "chrome/browser/extensions/external_loader.h" |
17 #include "chrome/browser/policy/cloud/cloud_policy_store.h" | 17 #include "components/policy/core/common/cloud/cloud_policy_store.h" |
18 | 18 |
19 namespace chromeos { | 19 namespace chromeos { |
20 | 20 |
21 // A specialization of the ExternalLoader that serves external extensions from | 21 // A specialization of the ExternalLoader that serves external extensions from |
22 // the enterprise policy force-install list. This class is used for device-local | 22 // the enterprise policy force-install list. This class is used for device-local |
23 // accounts in place of the ExternalPolicyLoader. The difference is that while | 23 // accounts in place of the ExternalPolicyLoader. The difference is that while |
24 // the ExternalPolicyLoader requires extensions to be downloaded on-the-fly, | 24 // the ExternalPolicyLoader requires extensions to be downloaded on-the-fly, |
25 // this class caches them, allowing for offline installation. | 25 // this class caches them, allowing for offline installation. |
26 class DeviceLocalAccountExternalPolicyLoader | 26 class DeviceLocalAccountExternalPolicyLoader |
27 : public extensions::ExternalLoader, | 27 : public extensions::ExternalLoader, |
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
69 policy::CloudPolicyStore* store_; | 69 policy::CloudPolicyStore* store_; |
70 const base::FilePath cache_dir_; | 70 const base::FilePath cache_dir_; |
71 scoped_ptr<ExternalCache> external_cache_; | 71 scoped_ptr<ExternalCache> external_cache_; |
72 | 72 |
73 DISALLOW_COPY_AND_ASSIGN(DeviceLocalAccountExternalPolicyLoader); | 73 DISALLOW_COPY_AND_ASSIGN(DeviceLocalAccountExternalPolicyLoader); |
74 }; | 74 }; |
75 | 75 |
76 } // namespace chromeos | 76 } // namespace chromeos |
77 | 77 |
78 #endif // CHROME_BROWSER_CHROMEOS_EXTENSIONS_DEVICE_LOCAL_ACCOUNT_EXTERNAL_POLI
CY_LOADER_H_ | 78 #endif // CHROME_BROWSER_CHROMEOS_EXTENSIONS_DEVICE_LOCAL_ACCOUNT_EXTERNAL_POLI
CY_LOADER_H_ |
OLD | NEW |