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

Unified Diff: public/web/WebStorageQuotaError.h

Issue 17379011: Make ExceptionCode be an enum that does not encode the "code" property (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase Created 7 years, 6 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
« no previous file with comments | « Source/modules/indexeddb/IDBDatabaseException.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: public/web/WebStorageQuotaError.h
diff --git a/public/web/WebStorageQuotaError.h b/public/web/WebStorageQuotaError.h
index d2c44c50aef884fc8553548e2614892e3b505411..520fc0afe3b0342b53353208c7ba8e0025d304b3 100644
--- a/public/web/WebStorageQuotaError.h
+++ b/public/web/WebStorageQuotaError.h
@@ -35,10 +35,10 @@ namespace WebKit {
// The error code used for WebStorageQuota.
enum WebStorageQuotaError {
- WebStorageQuotaErrorNotSupported = 9,
- WebStorageQuotaErrorInvalidModification = 13,
- WebStorageQuotaErrorInvalidAccess = 15,
- WebStorageQuotaErrorAbort = 20,
+ WebStorageQuotaErrorNotSupported = 7,
+ WebStorageQuotaErrorInvalidModification = 11,
+ WebStorageQuotaErrorInvalidAccess = 13,
+ WebStorageQuotaErrorAbort = 17,
};
} // namespace WebKit
« no previous file with comments | « Source/modules/indexeddb/IDBDatabaseException.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698