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

Unified Diff: chrome/browser/content_settings/content_settings_policy_provider.h

Issue 7344008: Make the hcsm and its providers communicate via an observer interface. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: "remove commented code" 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/content_settings/content_settings_policy_provider.h
diff --git a/chrome/browser/content_settings/content_settings_policy_provider.h b/chrome/browser/content_settings/content_settings_policy_provider.h
index f634da77f4d2af13437bf4ccebd87f129152caeb..2b34cfb4afe8595b1c78122ecb2126a3423d9b6d 100644
--- a/chrome/browser/content_settings/content_settings_policy_provider.h
+++ b/chrome/browser/content_settings/content_settings_policy_provider.h
@@ -14,7 +14,7 @@
#include "base/synchronization/lock.h"
#include "base/tuple.h"
#include "chrome/browser/content_settings/content_settings_origin_identifier_value_map.h"
-#include "chrome/browser/content_settings/content_settings_provider.h"
+#include "chrome/browser/content_settings/content_settings_abstract_provider.h"
#include "chrome/browser/prefs/pref_change_registrar.h"
#include "content/common/notification_observer.h"
#include "content/common/notification_registrar.h"
@@ -78,16 +78,16 @@ class PolicyDefaultProvider : public DefaultProviderInterface,
};
// PolicyProvider that provider managed content-settings.
-class PolicyProvider : public ProviderInterface,
+class PolicyProvider : public AbstractProvider,
public NotificationObserver {
public:
- PolicyProvider(HostContentSettingsMap* map,
+ PolicyProvider(Observer* observer,
Bernhard Bauer 2011/07/13 13:21:28 Come to think of it, do we actually *need* an obse
markusheintz_ 2011/07/13 13:28:53 That is totally correct! Basically the host conte
Bernhard Bauer 2011/07/13 13:41:32 No, you don't. At the point where you create the c
markusheintz_ 2011/07/13 14:14:42 Ok.
PrefService* prefs,
DefaultProviderInterface* default_provider);
virtual ~PolicyProvider();
static void RegisterUserPrefs(PrefService* prefs);
- // ProviderInterface Implementation
+ // ProviderInterface implementations.
virtual void SetContentSetting(
const ContentSettingsPattern& primary_pattern,
const ContentSettingsPattern& secondary_pattern,
@@ -131,11 +131,8 @@ class PolicyProvider : public ProviderInterface,
void ReadManagedContentSettingsTypes(ContentSettingsType content_type);
- void NotifyObservers(const ContentSettingsDetails& details);
-
OriginIdentifierValueMap value_map_;
- HostContentSettingsMap* host_content_settings_map_;
PrefService* prefs_;
// Weak, owned by HostContentSettingsMap.

Powered by Google App Engine
This is Rietveld 408576698