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

Unified Diff: webkit/quota/quota_types.h

Issue 7003021: Added DeleteOriginData to QuotaClient (Closed)
Patch Set: '' 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
« webkit/quota/quota_manager.h ('K') | « webkit/quota/quota_manager.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/quota/quota_types.h
diff --git a/webkit/quota/quota_types.h b/webkit/quota/quota_types.h
index 2d42440f8773d116ca5b3276451c13ea33598826..097aecc57de794b123330864205e89e4c3fd1086 100644
--- a/webkit/quota/quota_types.h
+++ b/webkit/quota/quota_types.h
@@ -22,10 +22,15 @@ enum StorageType {
kStorageTypeUnknown,
};
+// TODO(tzik): Add assertions to
+// content/browser/renderer_host/quota_dispatcher_host.cc
+// ref) third_party/WebKit/Source/WebCore/dom/ExceptionCode.h,
enum QuotaStatusCode {
kQuotaStatusOk = 0,
- kQuotaErrorNotSupported = 9,
- kQuotaErrorAbort = 20,
+ kQuotaErrorNotSupported = 9, // NOT_SUPPORTED_ERR
+ kQuotaErrorInvalidModification = 13, // INVALID_MODIFICATION_ERR
+ kQuotaErrorInvalidAccess = 15, // INVALID_ACCESS_ERR
+ kQuotaErrorAbort = 20, // ABORT_ERR
kQuotaStatusUnknown = -1,
};
« webkit/quota/quota_manager.h ('K') | « webkit/quota/quota_manager.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698