| Index: chrome/browser/policy/configuration_policy_provider.h
|
| diff --git a/chrome/browser/policy/configuration_policy_provider.h b/chrome/browser/policy/configuration_policy_provider.h
|
| index f12b285fafd47b112ae2c2d2320bdfab54c9fd5e..d7b0e02e81e07aa1c34004a4a644226d95734465 100644
|
| --- a/chrome/browser/policy/configuration_policy_provider.h
|
| +++ b/chrome/browser/policy/configuration_policy_provider.h
|
| @@ -14,7 +14,6 @@
|
| namespace policy {
|
|
|
| struct PolicyDefinitionList;
|
| -class PolicyMap;
|
|
|
| // A mostly-abstract super class for platform-specific policy providers.
|
| // Platform-specific policy providers (Windows Group Policy, gconf,
|
| @@ -32,13 +31,6 @@ class ConfigurationPolicyProvider {
|
|
|
| virtual ~ConfigurationPolicyProvider();
|
|
|
| - // Fills the given |result| with the current policy values. Returns true if
|
| - // the policies were provided. This is used mainly by the
|
| - // ConfigurationPolicyPrefStore, which retrieves policy values from here.
|
| - // DEPRECATED: this call is going away, use policies() instead.
|
| - // http://crbug.com/108993
|
| - bool Provide(PolicyMap* result);
|
| -
|
| // Returns the current PolicyBundle.
|
| const PolicyBundle& policies() const { return policy_bundle_; }
|
|
|
| @@ -54,11 +46,6 @@ class ConfigurationPolicyProvider {
|
| // OnUpdatePolicy won't be called if that happens.
|
| virtual void RefreshPolicies() = 0;
|
|
|
| - // Utility method that converts deprecated policies into their corresponding
|
| - // actual policies. Subclasses can use this to fix deprecated policies in
|
| - // PolicyMaps that they obtained from elsewhere.
|
| - static void FixDeprecatedPolicies(PolicyMap* policies);
|
| -
|
| protected:
|
| // Subclasses must invoke this to update the policies currently served by
|
| // this provider. UpdatePolicy() takes ownership of |policies|.
|
|
|