| 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 d4753e2539ffa886ca8b0bfd35d2ff8d2ff6326d..c6fe6a976658607fe95a4208f1970ebe788ee840 100644
|
| --- a/third_party/WebKit/Source/modules/fetch/RequestInit.h
|
| +++ b/third_party/WebKit/Source/modules/fetch/RequestInit.h
|
| @@ -15,22 +15,22 @@
|
|
|
| namespace blink {
|
|
|
| -class BytesConsumer;
|
| -class ExceptionState;
|
| +class BodyStreamBuffer;
|
| class Headers;
|
| +class ScriptState;
|
|
|
| // FIXME: Use IDL dictionary instead of this class.
|
| class RequestInit {
|
| STACK_ALLOCATED();
|
|
|
| public:
|
| - explicit RequestInit(ExecutionContext*, const Dictionary&, ExceptionState&);
|
| + explicit RequestInit(ScriptState*, const Dictionary&, ExceptionState&);
|
|
|
| String method;
|
| Member<Headers> headers;
|
| Dictionary headersDictionary;
|
| String contentType;
|
| - Member<BytesConsumer> body;
|
| + Member<BodyStreamBuffer> body;
|
| Referrer referrer;
|
| String mode;
|
| String credentials;
|
|
|