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

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

Issue 243523003: Fire window.onerror for uncaught IndexedDB errors (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Add comment Created 6 years, 6 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
Index: Source/modules/indexeddb/IDBRequest.h
diff --git a/Source/modules/indexeddb/IDBRequest.h b/Source/modules/indexeddb/IDBRequest.h
index af1d7f51a6b0f2504bcd1aeb3eb09ee577d1d3d1..d5c60327289a0c072f514d022e72c2c039068583 100644
--- a/Source/modules/indexeddb/IDBRequest.h
+++ b/Source/modules/indexeddb/IDBRequest.h
@@ -50,8 +50,9 @@ namespace WebCore {
class ExceptionState;
class IDBCursor;
-struct IDBDatabaseMetadata;
+class ScriptCallStack;
class SharedBuffer;
+struct IDBDatabaseMetadata;
class IDBRequest
: public RefCountedGarbageCollectedWillBeGarbageCollectedFinalized<IDBRequest>
@@ -163,6 +164,8 @@ private:
RefPtr<SharedBuffer> m_cursorValue;
OwnPtr<Vector<blink::WebBlobInfo> > m_blobInfo;
+ RefPtrWillBeMember<ScriptCallStack> m_creationStackTrace;
+
bool m_didFireUpgradeNeededEvent;
bool m_preventPropagation;
bool m_resultDirty;

Powered by Google App Engine
This is Rietveld 408576698