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

Unified Diff: Source/modules/indexeddb/IDBDatabase.h

Issue 18580013: IndexedDB: Make DOMException messages more useful. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Specific message for inactive transactions Created 7 years, 5 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/IDBCursor.cpp ('k') | Source/modules/indexeddb/IDBDatabase.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/indexeddb/IDBDatabase.h
diff --git a/Source/modules/indexeddb/IDBDatabase.h b/Source/modules/indexeddb/IDBDatabase.h
index b68812421818712d8eaa87c6a952853b2b958f3a..9f1e3840df9f0f3f8133894ff8befbbe25ed0322 100644
--- a/Source/modules/indexeddb/IDBDatabase.h
+++ b/Source/modules/indexeddb/IDBDatabase.h
@@ -107,7 +107,19 @@ public:
static int64_t nextTransactionId();
- static const char notFoundErrorMessage[];
+ static const char indexDeletedErrorMessage[];
+ static const char isKeyCursorErrorMessage[];
+ static const char noKeyOrKeyRangeErrorMessage[];
+ static const char noSuchIndexErrorMessage[];
+ static const char noSuchObjectStoreErrorMessage[];
+ static const char noValueErrorMessage[];
+ static const char notValidKeyErrorMessage[];
+ static const char notVersionChangeTransactionErrorMessage[];
+ static const char objectStoreDeletedErrorMessage[];
+ static const char requestNotFinishedErrorMessage[];
+ static const char sourceDeletedErrorMessage[];
+ static const char transactionFinishedErrorMessage[];
+ static const char transactionInactiveErrorMessage[];
using RefCounted<IDBDatabase>::ref;
using RefCounted<IDBDatabase>::deref;
« no previous file with comments | « Source/modules/indexeddb/IDBCursor.cpp ('k') | Source/modules/indexeddb/IDBDatabase.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698