| Index: third_party/WebKit/Source/modules/indexeddb/IDBIndex.h
|
| diff --git a/third_party/WebKit/Source/modules/indexeddb/IDBIndex.h b/third_party/WebKit/Source/modules/indexeddb/IDBIndex.h
|
| index 0854b459811418398273fd2bf8a62795eaf72784..f33e132a7b57f95cd6f5bb42cfd48ae83e928d48 100644
|
| --- a/third_party/WebKit/Source/modules/indexeddb/IDBIndex.h
|
| +++ b/third_party/WebKit/Source/modules/indexeddb/IDBIndex.h
|
| @@ -32,15 +32,14 @@
|
| #include "modules/indexeddb/IDBKeyRange.h"
|
| #include "modules/indexeddb/IDBMetadata.h"
|
| #include "modules/indexeddb/IDBRequest.h"
|
| -#include "public/platform/modules/indexeddb/WebIDBCursor.h"
|
| -#include "public/platform/modules/indexeddb/WebIDBDatabase.h"
|
| -#include "public/platform/modules/indexeddb/WebIDBTypes.h"
|
| +#include "public/platform/modules/indexeddb/indexed_db.mojom-blink.h"
|
| #include "wtf/Forward.h"
|
| #include "wtf/text/WTFString.h"
|
|
|
| namespace blink {
|
|
|
| class ExceptionState;
|
| +class IDBDatabaseProxy;
|
| class IDBObjectStore;
|
|
|
| class IDBIndex final : public GarbageCollectedFinalized<IDBIndex>, public ScriptWrappable {
|
| @@ -74,9 +73,9 @@ public:
|
| bool isDeleted() const;
|
|
|
| // Used internally and by InspectorIndexedDBAgent:
|
| - IDBRequest* openCursor(ScriptState*, IDBKeyRange*, WebIDBCursorDirection);
|
| + IDBRequest* openCursor(ScriptState*, IDBKeyRange*, indexed_db::mojom::blink::CursorDirection);
|
|
|
| - WebIDBDatabase* backendDB() const;
|
| + IDBDatabaseProxy* backendDB() const;
|
|
|
| private:
|
| IDBIndex(const IDBIndexMetadata&, IDBObjectStore*, IDBTransaction*);
|
|
|