Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(75)

Side by Side Diff: components/policy/core/common/cloud/cloud_policy_manager.h

Issue 1651203002: Update components for new prefs location. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 COMPONENTS_POLICY_CORE_COMMON_CLOUD_CLOUD_POLICY_MANAGER_H_ 5 #ifndef COMPONENTS_POLICY_CORE_COMMON_CLOUD_CLOUD_POLICY_MANAGER_H_
6 #define COMPONENTS_POLICY_CORE_COMMON_CLOUD_CLOUD_POLICY_MANAGER_H_ 6 #define COMPONENTS_POLICY_CORE_COMMON_CLOUD_CLOUD_POLICY_MANAGER_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/compiler_specific.h" 10 #include "base/compiler_specific.h"
11 #include "base/macros.h" 11 #include "base/macros.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/prefs/pref_member.h"
15 #include "components/policy/core/common/cloud/cloud_policy_core.h" 14 #include "components/policy/core/common/cloud/cloud_policy_core.h"
16 #include "components/policy/core/common/cloud/cloud_policy_store.h" 15 #include "components/policy/core/common/cloud/cloud_policy_store.h"
17 #include "components/policy/core/common/cloud/component_cloud_policy_service.h" 16 #include "components/policy/core/common/cloud/component_cloud_policy_service.h"
18 #include "components/policy/core/common/configuration_policy_provider.h" 17 #include "components/policy/core/common/configuration_policy_provider.h"
19 #include "components/policy/policy_export.h" 18 #include "components/policy/policy_export.h"
19 #include "components/prefs/pref_member.h"
20 20
21 namespace base { 21 namespace base {
22 class FilePath; 22 class FilePath;
23 class SequencedTaskRunner; 23 class SequencedTaskRunner;
24 } 24 }
25 25
26 namespace net { 26 namespace net {
27 class URLRequestContextGetter; 27 class URLRequestContextGetter;
28 } 28 }
29 29
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
113 113
114 scoped_refptr<base::SequencedTaskRunner> file_task_runner_; 114 scoped_refptr<base::SequencedTaskRunner> file_task_runner_;
115 scoped_refptr<base::SequencedTaskRunner> io_task_runner_; 115 scoped_refptr<base::SequencedTaskRunner> io_task_runner_;
116 116
117 DISALLOW_COPY_AND_ASSIGN(CloudPolicyManager); 117 DISALLOW_COPY_AND_ASSIGN(CloudPolicyManager);
118 }; 118 };
119 119
120 } // namespace policy 120 } // namespace policy
121 121
122 #endif // COMPONENTS_POLICY_CORE_COMMON_CLOUD_CLOUD_POLICY_MANAGER_H_ 122 #endif // COMPONENTS_POLICY_CORE_COMMON_CLOUD_CLOUD_POLICY_MANAGER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698