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

Unified Diff: webkit/quota/quota_client.h

Issue 7003021: Added DeleteOriginData to QuotaClient (Closed)
Patch Set: Apply patch from issue 7013018 Created 9 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/quota_client.h
diff --git a/webkit/quota/quota_client.h b/webkit/quota/quota_client.h
index 3e46159de63eb105ee27a7e2a682465b5d185abb..69fba0d396943e826ec52c63c47cb3589abc25ca 100644
--- a/webkit/quota/quota_client.h
+++ b/webkit/quota/quota_client.h
@@ -23,6 +23,7 @@ class QuotaClient {
public:
typedef Callback1<int64>::Type GetUsageCallback;
typedef Callback1<const std::set<GURL>&>::Type GetOriginsCallback;
+ typedef Callback1<QuotaStatusCode>::Type DeletionCallback;
virtual ~QuotaClient() {}
@@ -57,6 +58,10 @@ class QuotaClient {
virtual void GetOriginsForHost(StorageType type,
const std::string& host,
GetOriginsCallback* callback) = 0;
+
kinuko 2011/05/12 08:59:22 Can we add a comment on which thread we'll be call
+ virtual void DeleteOriginData(const GURL& origin,
+ StorageType type,
+ DeletionCallback* callback) = 0;
};
typedef std::list<QuotaClient*> QuotaClientList;
« webkit/fileapi/sandbox_quota_client.cc ('K') | « webkit/quota/mock_storage_client.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698