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

Unified Diff: chrome/browser/profiles/profile_impl_io_data.h

Issue 10407124: Don't force non-session only cookies to be session only cookies, instead delete on shutdown (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: updates Created 8 years, 7 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/profiles/profile_impl_io_data.h
diff --git a/chrome/browser/profiles/profile_impl_io_data.h b/chrome/browser/profiles/profile_impl_io_data.h
index 153e2784821f675054197c49ce510562cd6f371e..c7b4d1eb300268567eb737c16d47dc12bd14df5c 100644
--- a/chrome/browser/profiles/profile_impl_io_data.h
+++ b/chrome/browser/profiles/profile_impl_io_data.h
@@ -21,6 +21,10 @@ class HttpServerProperties;
class HttpTransactionFactory;
} // namespace net
+namespace quota {
+class SpecialStoragePolicy;
+} // namespace quota
+
class ProfileImplIOData : public ProfileIOData {
public:
class Handle {
@@ -45,7 +49,8 @@ class ProfileImplIOData : public ProfileIOData {
chrome_browser_net::Predictor* predictor,
PrefService* local_state,
IOThread* io_thread,
- bool restore_old_session_cookies);
+ bool restore_old_session_cookies,
+ quota::SpecialStoragePolicy* special_storage_policy);
base::Callback<ChromeURLDataManagerBackend*(void)>
GetChromeURLDataManagerBackendGetter() const;
@@ -115,6 +120,7 @@ class ProfileImplIOData : public ProfileIOData {
int media_cache_max_size;
FilePath extensions_cookie_path;
bool restore_old_session_cookies;
+ scoped_refptr<quota::SpecialStoragePolicy> special_storage_policy;
};
typedef base::hash_map<std::string, net::HttpTransactionFactory* >

Powered by Google App Engine
This is Rietveld 408576698