| Index: third_party/WebKit/Source/modules/indexeddb/IDBCursor.h
|
| diff --git a/third_party/WebKit/Source/modules/indexeddb/IDBCursor.h b/third_party/WebKit/Source/modules/indexeddb/IDBCursor.h
|
| index 96fd206ab25012214957f7e1c20c3c8a84412e71..85cd1f086268c06d53ae7d32005cbc366cf3b0e9 100644
|
| --- a/third_party/WebKit/Source/modules/indexeddb/IDBCursor.h
|
| +++ b/third_party/WebKit/Source/modules/indexeddb/IDBCursor.h
|
| @@ -26,17 +26,17 @@
|
| #ifndef IDBCursor_h
|
| #define IDBCursor_h
|
|
|
| +#include <memory>
|
| #include "bindings/core/v8/ScriptValue.h"
|
| #include "bindings/core/v8/ScriptWrappable.h"
|
| #include "modules/indexeddb/IDBKey.h"
|
| #include "modules/indexeddb/IDBRequest.h"
|
| #include "modules/indexeddb/IndexedDB.h"
|
| +#include "platform/wtf/Compiler.h"
|
| +#include "platform/wtf/PassRefPtr.h"
|
| +#include "platform/wtf/RefPtr.h"
|
| #include "public/platform/modules/indexeddb/WebIDBCursor.h"
|
| #include "public/platform/modules/indexeddb/WebIDBTypes.h"
|
| -#include "wtf/Compiler.h"
|
| -#include "wtf/PassRefPtr.h"
|
| -#include "wtf/RefPtr.h"
|
| -#include <memory>
|
|
|
| namespace blink {
|
|
|
|
|