Chromium Code Reviews| 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_; |