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

Side by Side Diff: chrome/browser/policy/cloud/cloud_external_data_manager.h

Issue 78763002: Move PolicyMap and its dependencies to components/policy/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: export nested struct Created 7 years, 1 month 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 | Annotate | Revision Log
OLDNEW
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_POLICY_CLOUD_CLOUD_EXTERNAL_DATA_MANAGER_H_ 5 #ifndef CHROME_BROWSER_POLICY_CLOUD_CLOUD_EXTERNAL_DATA_MANAGER_H_
6 #define CHROME_BROWSER_POLICY_CLOUD_CLOUD_EXTERNAL_DATA_MANAGER_H_ 6 #define CHROME_BROWSER_POLICY_CLOUD_CLOUD_EXTERNAL_DATA_MANAGER_H_
7 7
8 #include <map> 8 #include <map>
9 #include <string> 9 #include <string>
10 10
11 #include "base/basictypes.h" 11 #include "base/basictypes.h"
12 #include "base/memory/ref_counted.h" 12 #include "base/memory/ref_counted.h"
13 #include "base/memory/weak_ptr.h" 13 #include "base/memory/weak_ptr.h"
14 #include "chrome/browser/policy/external_data_manager.h" 14 #include "components/policy/core/common/external_data_manager.h"
15 15
16 namespace net { 16 namespace net {
17 class URLRequestContextGetter; 17 class URLRequestContextGetter;
18 } 18 }
19 19
20 namespace policy { 20 namespace policy {
21 21
22 class CloudPolicyStore; 22 class CloudPolicyStore;
23 23
24 // Downloads, verifies, caches and retrieves external data referenced by 24 // Downloads, verifies, caches and retrieves external data referenced by
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
65 CloudPolicyStore* policy_store_; // Not owned. 65 CloudPolicyStore* policy_store_; // Not owned.
66 66
67 base::WeakPtrFactory<CloudExternalDataManager> weak_factory_; 67 base::WeakPtrFactory<CloudExternalDataManager> weak_factory_;
68 68
69 DISALLOW_COPY_AND_ASSIGN(CloudExternalDataManager); 69 DISALLOW_COPY_AND_ASSIGN(CloudExternalDataManager);
70 }; 70 };
71 71
72 } // namespace policy 72 } // namespace policy
73 73
74 #endif // CHROME_BROWSER_POLICY_CLOUD_CLOUD_EXTERNAL_DATA_MANAGER_H_ 74 #endif // CHROME_BROWSER_POLICY_CLOUD_CLOUD_EXTERNAL_DATA_MANAGER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698