#ifndef CHROME_BROWSER_CONTENT_SETTINGS_CONTENT_SETTINGS_CUSTOM_EXTENSION_PROVIDER_H_
#define CHROME_BROWSER_CONTENT_SETTINGS_CONTENT_SETTINGS_CUSTOM_EXTENSION_PROVIDER_H_
#include <string>
#include "base/memory/ref_counted.h"
#include "chrome/browser/content_settings/content_settings_observable_provider.h"
#include "chrome/browser/extensions/api/content_settings/content_settings_store.h"
namespace content_settings {
class CustomExtensionProvider : public ObservableProvider,
public extensions::ContentSettingsStore::Observer {
public:
CustomExtensionProvider(
extensions::ContentSettingsStore* extensions_settings,
bool incognito);
virtual ~CustomExtensionProvider();
virtual RuleIterator* GetRuleIterator(
ContentSettingsType content_type,
const ResourceIdentifier& resource_identifier,
bool incognito) const OVERRIDE;
virtual bool SetWebsiteSetting(
const ContentSettingsPattern& primary_pattern,
const ContentSettingsPattern& secondary_pattern,
ContentSettingsType content_type,
const ResourceIdentifier& resource_identifier,
base::Value* value) OVERRIDE;
virtual void ClearAllContentSettingsRules(ContentSettingsType content_type)
OVERRIDE {}
virtual void ShutdownOnUIThread() OVERRIDE;
virtual void OnContentSettingChanged(const std::string& extension_id,
bool incognito) OVERRIDE;
private:
bool incognito_;
scoped_refptr<extensions::ContentSettingsStore> extensions_settings_;
DISALLOW_COPY_AND_ASSIGN(CustomExtensionProvider);
};
}
#endif