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

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

Issue 3774003: Cleanup and style guideline conformance for policy implementation (Closed) Base URL: git://codf21.jail/chromium.git
Patch Set: fix windows build and tests Created 10 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 side-by-side diff with in-line comments
Download patch
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 da8d69eb42f8243e6bf154ad088d6b7cef1786a9..7969988c8feba1875447fc7460b60c02a34e7501 100644
--- a/chrome/browser/policy/configuration_policy_provider.h
+++ b/chrome/browser/policy/configuration_policy_provider.h
@@ -12,7 +12,7 @@
#include "base/basictypes.h"
#include "base/scoped_ptr.h"
#include "base/values.h"
-#include "chrome/browser/policy/configuration_policy_store.h"
+#include "chrome/browser/policy/configuration_policy_store_interface.h"
namespace policy {
@@ -25,7 +25,7 @@ class ConfigurationPolicyProvider {
// instance of the ConfigurationPolicyProvider.
struct PolicyDefinitionList {
struct Entry {
- ConfigurationPolicyStore::PolicyType policy_type;
+ ConfigurationPolicyType policy_type;
Value::ValueType value_type;
const char* name;
};
@@ -45,7 +45,7 @@ class ConfigurationPolicyProvider {
// the |ConfigurationPolicyProvider| must make calls to the
// |Apply| method of |store| to apply specific policies.
// Returns true if the policy could be provided, otherwise false.
- virtual bool Provide(ConfigurationPolicyStore* store) = 0;
+ virtual bool Provide(ConfigurationPolicyStoreInterface* store) = 0;
// Called by the subclass provider at any time to indicate that the currently
// applied policy is not longer current. A policy refresh will be initiated as

Powered by Google App Engine
This is Rietveld 408576698