| 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 593f71306e78da34ea83900828518dcef35d4f12..99094215ac3edf4173281c39925a019d224bc4a7 100644
|
| --- a/third_party/WebKit/Source/modules/fetch/RequestInit.h
|
| +++ b/third_party/WebKit/Source/modules/fetch/RequestInit.h
|
| @@ -15,8 +15,8 @@
|
|
|
| namespace blink {
|
|
|
| +class BytesConsumer;
|
| class ExceptionState;
|
| -class FetchDataConsumerHandle;
|
| class Headers;
|
|
|
| // FIXME: Use IDL dictionary instead of this class.
|
| @@ -29,7 +29,7 @@ public:
|
| Member<Headers> headers;
|
| Dictionary headersDictionary;
|
| String contentType;
|
| - std::unique_ptr<FetchDataConsumerHandle> body;
|
| + Member<BytesConsumer> body;
|
| Referrer referrer;
|
| String mode;
|
| String credentials;
|
|
|