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

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

Issue 1182233003: IndexedDB: Replace use of DOMError with DOMException (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebased Created 5 years, 3 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 | « LayoutTests/storage/indexeddb/error-attributes.html ('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 297ece41c1eadb651a01a73361203f7e2cb84619..bfa683062c0dcde26c0d5b9470068e3ffd7ded70 100644
--- a/Source/modules/indexeddb/IDBDatabase.h
+++ b/Source/modules/indexeddb/IDBDatabase.h
@@ -48,7 +48,7 @@
namespace blink {
-class DOMError;
+class DOMException;
class ExceptionState;
class ExecutionContext;
@@ -86,7 +86,7 @@ public:
// IDBDatabaseCallbacks
void onVersionChange(int64_t oldVersion, int64_t newVersion);
- void onAbort(int64_t, DOMError*);
+ void onAbort(int64_t, DOMException*);
void onComplete(int64_t);
// ActiveDOMObject
« no previous file with comments | « LayoutTests/storage/indexeddb/error-attributes.html ('k') | Source/modules/indexeddb/IDBDatabase.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698