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

Unified Diff: chrome/browser/policy/device_policy_cache.h

Issue 7298012: Consolidate data storage and notifications in the cloud policy subsystem (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: " Created 9 years, 5 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/policy/device_policy_cache.h
diff --git a/chrome/browser/policy/device_policy_cache.h b/chrome/browser/policy/device_policy_cache.h
index 7e1082db32830e851487d5b7200069852829b631..982519ff35c1de6badf6803f83335b981b748836 100644
--- a/chrome/browser/policy/device_policy_cache.h
+++ b/chrome/browser/policy/device_policy_cache.h
@@ -16,7 +16,7 @@
namespace policy {
-class DevicePolicyIdentityStrategy;
+class DevicePolicyHolder;
Joao da Silva 2011/07/06 16:45:14 What's this?
gfeher 2011/07/07 13:51:00 Done.
class EnterpriseInstallAttributes;
class PolicyMap;
@@ -27,7 +27,7 @@ namespace em = enterprise_management;
class DevicePolicyCache : public CloudPolicyCacheBase,
public chromeos::SignedSettingsHelper::Callback {
public:
- explicit DevicePolicyCache(DevicePolicyIdentityStrategy* identity_strategy,
+ explicit DevicePolicyCache(CloudPolicyData* data,
EnterpriseInstallAttributes* install_attributes);
virtual ~DevicePolicyCache();
@@ -48,7 +48,7 @@ class DevicePolicyCache : public CloudPolicyCacheBase,
// Alternate c'tor allowing tests to mock out the SignedSettingsHelper
// singleton.
DevicePolicyCache(
- DevicePolicyIdentityStrategy* identity_strategy,
+ CloudPolicyData* data,
EnterpriseInstallAttributes* install_attributes,
chromeos::SignedSettingsHelper* signed_settings_helper);
@@ -67,7 +67,7 @@ class DevicePolicyCache : public CloudPolicyCacheBase,
PolicyMap* mandatory,
PolicyMap* recommended);
- DevicePolicyIdentityStrategy* identity_strategy_;
+ CloudPolicyData* data_;
EnterpriseInstallAttributes* install_attributes_;
chromeos::SignedSettingsHelper* signed_settings_helper_;

Powered by Google App Engine
This is Rietveld 408576698