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

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

Issue 1364823002: IndexedDB: Replace use of DOMError with DOMException (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Drop [Measure] where done Created 5 years, 1 month 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
Index: third_party/WebKit/Source/modules/indexeddb/IDBDatabaseCallbacks.cpp
diff --git a/third_party/WebKit/Source/modules/indexeddb/IDBDatabaseCallbacks.cpp b/third_party/WebKit/Source/modules/indexeddb/IDBDatabaseCallbacks.cpp
index 2de84e87cd6055205de07a47e4b600606617a417..5af0bd68cacd6219ca8bc07a69b676bf38052f8b 100644
--- a/third_party/WebKit/Source/modules/indexeddb/IDBDatabaseCallbacks.cpp
+++ b/third_party/WebKit/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);

Powered by Google App Engine
This is Rietveld 408576698