| Index: chrome/browser/extensions/extension_special_storage_policy.h
|
| diff --git a/chrome/browser/extensions/extension_special_storage_policy.h b/chrome/browser/extensions/extension_special_storage_policy.h
|
| index 8ce9d30b4de18def91957d7317345081c7dcbeda..e28420f924fcec49a19c79f86042a3eb843fa672 100644
|
| --- a/chrome/browser/extensions/extension_special_storage_policy.h
|
| +++ b/chrome/browser/extensions/extension_special_storage_policy.h
|
| @@ -14,7 +14,7 @@
|
| #include "webkit/quota/special_storage_policy.h"
|
|
|
| class Extension;
|
| -class HostContentSettingsMap;
|
| +class CookieContentSettings;
|
|
|
| // Special rights are granted to 'extensions' and 'applications'. The
|
| // storage subsystems and the browsing data remover query this interface
|
| @@ -22,7 +22,7 @@ class HostContentSettingsMap;
|
| class ExtensionSpecialStoragePolicy : public quota::SpecialStoragePolicy {
|
| public:
|
| explicit ExtensionSpecialStoragePolicy(
|
| - HostContentSettingsMap* host_content_settings_map);
|
| + CookieContentSettings* cookie_content_settings);
|
|
|
| // SpecialStoragePolicy methods used by storage subsystems and the browsing
|
| // data remover. These methods are safe to call on any thread.
|
| @@ -64,7 +64,7 @@ class ExtensionSpecialStoragePolicy : public quota::SpecialStoragePolicy {
|
| SpecialCollection protected_apps_;
|
| SpecialCollection unlimited_extensions_;
|
| SpecialCollection file_handler_extensions_;
|
| - scoped_refptr<HostContentSettingsMap> host_content_settings_map_;
|
| + scoped_refptr<CookieContentSettings> cookie_content_settings_;
|
| };
|
|
|
| #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_SPECIAL_STORAGE_POLICY_H_
|
|
|