| Index: Source/modules/indexeddb/IDBRequest.cpp
|
| diff --git a/Source/modules/indexeddb/IDBRequest.cpp b/Source/modules/indexeddb/IDBRequest.cpp
|
| index 7e3660f6095875b61ae72d1b7c460a163a7db414..03ffbbd78ef030425414c19f661f3448f68ed9ed 100644
|
| --- a/Source/modules/indexeddb/IDBRequest.cpp
|
| +++ b/Source/modules/indexeddb/IDBRequest.cpp
|
| @@ -65,7 +65,7 @@ IDBRequest::IDBRequest(ScriptState* scriptState, IDBAny* source, IDBTransaction*
|
| , m_source(source)
|
| , m_hasPendingActivity(true)
|
| , m_cursorType(IndexedDB::CursorKeyAndValue)
|
| - , m_cursorDirection(blink::WebIDBCursor::Next)
|
| + , m_cursorDirection(blink::WebIDBCursorDirectionNext)
|
| , m_pendingCursor(nullptr)
|
| , m_didFireUpgradeNeededEvent(false)
|
| , m_preventPropagation(false)
|
| @@ -160,7 +160,7 @@ void IDBRequest::abort()
|
| m_requestAborted = true;
|
| }
|
|
|
| -void IDBRequest::setCursorDetails(IndexedDB::CursorType cursorType, WebIDBCursor::Direction direction)
|
| +void IDBRequest::setCursorDetails(IndexedDB::CursorType cursorType, blink::WebIDBCursorDirection direction)
|
| {
|
| ASSERT(m_readyState == PENDING);
|
| ASSERT(!m_pendingCursor);
|
|
|