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

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

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.h
diff --git a/third_party/WebKit/Source/modules/indexeddb/IDBDatabaseCallbacks.h b/third_party/WebKit/Source/modules/indexeddb/IDBDatabaseCallbacks.h
index 722df1012d7a932a8a85839c815d3a3fff38f07c..58cfde86e844803eae21e0efd4fffec112430f81 100644
--- a/third_party/WebKit/Source/modules/indexeddb/IDBDatabaseCallbacks.h
+++ b/third_party/WebKit/Source/modules/indexeddb/IDBDatabaseCallbacks.h
@@ -32,7 +32,7 @@
namespace blink {
-class DOMError;
+class DOMException;
class IDBDatabase;
class MODULES_EXPORT IDBDatabaseCallbacks : public GarbageCollectedFinalized<IDBDatabaseCallbacks> {
@@ -45,7 +45,7 @@ public:
virtual void onForcedClose();
virtual void onVersionChange(int64_t oldVersion, int64_t newVersion);
- virtual void onAbort(int64_t transactionId, DOMError*);
+ virtual void onAbort(int64_t transactionId, DOMException*);
virtual void onComplete(int64_t transactionId);
void connect(IDBDatabase*);

Powered by Google App Engine
This is Rietveld 408576698