| Index: third_party/WebKit/Source/modules/fetch/RequestInit.h
|
| diff --git a/third_party/WebKit/Source/modules/fetch/RequestInit.h b/third_party/WebKit/Source/modules/fetch/RequestInit.h
|
| index cbde8fbd86ff430d13bbfeceabae0afc06d7a29a..21b13468bd57284d24f0dcf6e360248486d8b5cb 100644
|
| --- a/third_party/WebKit/Source/modules/fetch/RequestInit.h
|
| +++ b/third_party/WebKit/Source/modules/fetch/RequestInit.h
|
| @@ -5,8 +5,6 @@
|
| #ifndef RequestInit_h
|
| #define RequestInit_h
|
|
|
| -#include <memory>
|
| -#include "bindings/core/v8/Dictionary.h"
|
| #include "platform/heap/Handle.h"
|
| #include "platform/network/EncodedFormData.h"
|
| #include "platform/weborigin/Referrer.h"
|
| @@ -16,6 +14,8 @@
|
| namespace blink {
|
|
|
| class BytesConsumer;
|
| +class Dictionary;
|
| +class ExecutionContext;
|
| class ExceptionState;
|
| class Headers;
|
|
|
| @@ -28,7 +28,6 @@ class RequestInit {
|
|
|
| String method;
|
| Member<Headers> headers;
|
| - Dictionary headers_dictionary;
|
| String content_type;
|
| Member<BytesConsumer> body;
|
| Referrer referrer;
|
|
|