| Index: content/public/browser/cookie_store_factory.h
|
| diff --git a/content/public/browser/cookie_store_factory.h b/content/public/browser/cookie_store_factory.h
|
| index ec2243fcb1041a13008dbdeae7baeeea5ee30c6e..03834bfb4209b0032740fd16fcccb8362f94efd1 100644
|
| --- a/content/public/browser/cookie_store_factory.h
|
| +++ b/content/public/browser/cookie_store_factory.h
|
| @@ -18,7 +18,7 @@ class CookieMonsterDelegate;
|
| class CookieStore;
|
| }
|
|
|
| -namespace quota {
|
| +namespace storage {
|
| class SpecialStoragePolicy;
|
| }
|
|
|
| @@ -56,13 +56,13 @@ struct CONTENT_EXPORT CookieStoreConfig {
|
| // created using this config.
|
| CookieStoreConfig(const base::FilePath& path,
|
| SessionCookieMode session_cookie_mode,
|
| - quota::SpecialStoragePolicy* storage_policy,
|
| + storage::SpecialStoragePolicy* storage_policy,
|
| net::CookieMonsterDelegate* cookie_delegate);
|
| ~CookieStoreConfig();
|
|
|
| const base::FilePath path;
|
| const SessionCookieMode session_cookie_mode;
|
| - const scoped_refptr<quota::SpecialStoragePolicy> storage_policy;
|
| + const scoped_refptr<storage::SpecialStoragePolicy> storage_policy;
|
| const scoped_refptr<net::CookieMonsterDelegate> cookie_delegate;
|
|
|
| // The following are infrequently used cookie store parameters.
|
|
|