| Index: Source/modules/indexeddb/IDBObjectStore.cpp
|
| diff --git a/Source/modules/indexeddb/IDBObjectStore.cpp b/Source/modules/indexeddb/IDBObjectStore.cpp
|
| index 4fd39518478b476769403e9800816db86657326f..3687ac38f307a4c2c7be6db81bb5c00072cb90d3 100644
|
| --- a/Source/modules/indexeddb/IDBObjectStore.cpp
|
| +++ b/Source/modules/indexeddb/IDBObjectStore.cpp
|
| @@ -329,7 +329,7 @@ private:
|
| EventTarget* target = event->target();
|
| IDBRequest* request = static_cast<IDBRequest*>(target);
|
|
|
| - RefPtr<IDBAny> cursorAny = request->result(ASSERT_NO_EXCEPTION_STATE);
|
| + RefPtr<IDBAny> cursorAny = request->result(ASSERT_NO_EXCEPTION);
|
| RefPtr<IDBCursorWithValue> cursor;
|
| if (cursorAny->type() == IDBAny::IDBCursorWithValueType)
|
| cursor = cursorAny->idbCursorWithValue();
|
| @@ -337,7 +337,7 @@ private:
|
| Vector<int64_t, 1> indexIds;
|
| indexIds.append(m_indexMetadata.id);
|
| if (cursor) {
|
| - cursor->continueFunction(static_cast<IDBKey*>(0), ASSERT_NO_EXCEPTION_STATE);
|
| + cursor->continueFunction(static_cast<IDBKey*>(0), ASSERT_NO_EXCEPTION);
|
|
|
| RefPtr<IDBKey> primaryKey = cursor->idbPrimaryKey();
|
| ScriptValue value = cursor->value();
|
|
|