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

Unified Diff: webkit/quota/special_storage_policy.h

Issue 10413072: Teaching BrowsingDataRemover how to delete application data. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Ugh. 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: webkit/quota/special_storage_policy.h
diff --git a/webkit/quota/special_storage_policy.h b/webkit/quota/special_storage_policy.h
index f7d80f7de240155429d44dfd1cd91e736ebe2360..4389ea91b2dfc96bf8f3f983d9a8e153cf9e1313 100644
--- a/webkit/quota/special_storage_policy.h
+++ b/webkit/quota/special_storage_policy.h
@@ -23,6 +23,13 @@ namespace quota {
class SpecialStoragePolicy
: public base::RefCountedThreadSafe<SpecialStoragePolicy> {
public:
+ // Origins are all either protected, unprotected, or extensions.
+ enum OriginTypes {
+ UNPROTECTED_WEB = 1 << 0,
+ PROTECTED_WEB = 1 << 1,
+ EXTENSION = 1 << 2
jochen (gone - plz use gerrit) 2012/05/24 11:34:04 stuff in webkit/ can't know about extensions :-/
+ };
+
class Observer {
public:
virtual void OnSpecialStoragePolicyChanged() = 0;

Powered by Google App Engine
This is Rietveld 408576698