| Index: third_party/WebKit/Source/modules/indexeddb/IDBCursorWithValue.cpp
|
| diff --git a/third_party/WebKit/Source/modules/indexeddb/IDBCursorWithValue.cpp b/third_party/WebKit/Source/modules/indexeddb/IDBCursorWithValue.cpp
|
| index 047993a080066be01c51f567014543313b353d84..ca0225539d397a3716af823442aa657f54c91c1b 100644
|
| --- a/third_party/WebKit/Source/modules/indexeddb/IDBCursorWithValue.cpp
|
| +++ b/third_party/WebKit/Source/modules/indexeddb/IDBCursorWithValue.cpp
|
| @@ -26,18 +26,18 @@
|
| #include "modules/indexeddb/IDBCursorWithValue.h"
|
|
|
| #include "modules/indexeddb/IDBKey.h"
|
| -#include <memory>
|
|
|
| -using blink::WebIDBCursor;
|
| +using blink::IDBCursorProxy;
|
| +using indexed_db::mojom::blink::CursorDirection;
|
|
|
| namespace blink {
|
|
|
| -IDBCursorWithValue* IDBCursorWithValue::create(std::unique_ptr<WebIDBCursor> backend, WebIDBCursorDirection direction, IDBRequest* request, IDBAny* source, IDBTransaction* transaction)
|
| +IDBCursorWithValue* IDBCursorWithValue::create(std::unique_ptr<IDBCursorProxy> backend, CursorDirection direction, IDBRequest* request, IDBAny* source, IDBTransaction* transaction)
|
| {
|
| return new IDBCursorWithValue(std::move(backend), direction, request, source, transaction);
|
| }
|
|
|
| -IDBCursorWithValue::IDBCursorWithValue(std::unique_ptr<WebIDBCursor> backend, WebIDBCursorDirection direction, IDBRequest* request, IDBAny* source, IDBTransaction* transaction)
|
| +IDBCursorWithValue::IDBCursorWithValue(std::unique_ptr<IDBCursorProxy> backend, CursorDirection direction, IDBRequest* request, IDBAny* source, IDBTransaction* transaction)
|
| : IDBCursor(std::move(backend), direction, request, source, transaction)
|
| {
|
| }
|
|
|