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

Unified Diff: chrome/browser/extensions/mock_extension_special_storage_policy.h

Issue 7619010: Session-only local storage cleared on exit. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Code review comments (tiny). Created 9 years, 4 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/extensions/mock_extension_special_storage_policy.h
diff --git a/chrome/browser/extensions/mock_extension_special_storage_policy.h b/chrome/browser/extensions/mock_extension_special_storage_policy.h
index 0c481f19eb918a525b5f0aada0dc82ce5f196fe9..b4ce5484fe10f9389aec0046c0aedbfddde3d3e0 100644
--- a/chrome/browser/extensions/mock_extension_special_storage_policy.h
+++ b/chrome/browser/extensions/mock_extension_special_storage_policy.h
@@ -22,6 +22,7 @@ class MockExtensionSpecialStoragePolicy : public ExtensionSpecialStoragePolicy {
virtual bool IsStorageProtected(const GURL& origin);
virtual bool IsStorageUnlimited(const GURL& origin);
+ virtual bool IsStorageSessionOnly(const GURL& origin);
virtual bool IsFileHandler(const std::string& extension_id);
void AddProtected(const GURL& origin) {
@@ -32,6 +33,10 @@ class MockExtensionSpecialStoragePolicy : public ExtensionSpecialStoragePolicy {
unlimited_.insert(origin);
}
+ void AddSessionOnly(const GURL& origin) {
+ session_only_.insert(origin);
+ }
+
void AddFileHandler(const std::string& id) {
file_handlers_.insert(id);
}
@@ -39,12 +44,14 @@ class MockExtensionSpecialStoragePolicy : public ExtensionSpecialStoragePolicy {
void Reset() {
protected_.clear();
unlimited_.clear();
+ session_only_.clear();
file_handlers_.clear();
}
private:
std::set<GURL> protected_;
std::set<GURL> unlimited_;
+ std::set<GURL> session_only_;
std::set<std::string> file_handlers_;
DISALLOW_COPY_AND_ASSIGN(MockExtensionSpecialStoragePolicy);

Powered by Google App Engine
This is Rietveld 408576698