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

Unified Diff: Source/modules/indexeddb/IDBDatabaseCallbacks.cpp

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 | « Source/modules/indexeddb/IDBDatabaseCallbacks.h ('k') | Source/modules/indexeddb/IDBFactory.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/indexeddb/IDBDatabaseCallbacks.cpp
diff --git a/Source/modules/indexeddb/IDBDatabaseCallbacks.cpp b/Source/modules/indexeddb/IDBDatabaseCallbacks.cpp
index 2de84e87cd6055205de07a47e4b600606617a417..5af0bd68cacd6219ca8bc07a69b676bf38052f8b 100644
--- a/Source/modules/indexeddb/IDBDatabaseCallbacks.cpp
+++ b/Source/modules/indexeddb/IDBDatabaseCallbacks.cpp
@@ -68,7 +68,7 @@ void IDBDatabaseCallbacks::connect(IDBDatabase* database)
m_database = database;
}
-void IDBDatabaseCallbacks::onAbort(int64_t transactionId, DOMError* error)
+void IDBDatabaseCallbacks::onAbort(int64_t transactionId, DOMException* error)
{
if (m_database)
m_database->onAbort(transactionId, error);
« no previous file with comments | « Source/modules/indexeddb/IDBDatabaseCallbacks.h ('k') | Source/modules/indexeddb/IDBFactory.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698