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_POLICY_CLOUD_EXTERNAL_DATA_MANAGER_BASE_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_POLICY_CLOUD_EXTERNAL_DATA_MANAGER_BASE_H_ |
6 #define CHROME_BROWSER_CHROMEOS_POLICY_CLOUD_EXTERNAL_DATA_MANAGER_BASE_H_ | 6 #define CHROME_BROWSER_CHROMEOS_POLICY_CLOUD_EXTERNAL_DATA_MANAGER_BASE_H_ |
7 | 7 |
8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
9 #include "base/compiler_specific.h" | 9 #include "base/compiler_specific.h" |
10 #include "base/memory/ref_counted.h" | 10 #include "base/memory/ref_counted.h" |
11 #include "base/memory/scoped_ptr.h" | 11 #include "base/memory/scoped_ptr.h" |
12 #include "base/threading/non_thread_safe.h" | 12 #include "base/threading/non_thread_safe.h" |
13 #include "chrome/browser/policy/cloud/cloud_external_data_manager.h" | 13 #include "components/policy/core/common/cloud/cloud_external_data_manager.h" |
14 #include "components/policy/core/common/policy_details.h" | 14 #include "components/policy/core/common/policy_details.h" |
15 | 15 |
16 namespace base { | 16 namespace base { |
17 class SequencedTaskRunner; | 17 class SequencedTaskRunner; |
18 } | 18 } |
19 | 19 |
20 namespace policy { | 20 namespace policy { |
21 | 21 |
22 class CloudExternalDataStore; | 22 class CloudExternalDataStore; |
23 class ExternalPolicyDataFetcherBackend; | 23 class ExternalPolicyDataFetcherBackend; |
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
88 // |backend_task_runner_|. | 88 // |backend_task_runner_|. |
89 class Backend; | 89 class Backend; |
90 scoped_ptr<Backend> backend_; | 90 scoped_ptr<Backend> backend_; |
91 | 91 |
92 DISALLOW_COPY_AND_ASSIGN(CloudExternalDataManagerBase); | 92 DISALLOW_COPY_AND_ASSIGN(CloudExternalDataManagerBase); |
93 }; | 93 }; |
94 | 94 |
95 } // namespace policy | 95 } // namespace policy |
96 | 96 |
97 #endif // CHROME_BROWSER_CHROMEOS_POLICY_CLOUD_EXTERNAL_DATA_MANAGER_BASE_H_ | 97 #endif // CHROME_BROWSER_CHROMEOS_POLICY_CLOUD_EXTERNAL_DATA_MANAGER_BASE_H_ |
OLD | NEW |