| Index: third_party/WebKit/Source/modules/fetch/Response.h
|
| diff --git a/third_party/WebKit/Source/modules/fetch/Response.h b/third_party/WebKit/Source/modules/fetch/Response.h
|
| index 82b5b4a831bc2ddb2adbb68efd287892f11ee956..b7433d54f6049887536e49fb8f3a3ace65a4da43 100644
|
| --- a/third_party/WebKit/Source/modules/fetch/Response.h
|
| +++ b/third_party/WebKit/Source/modules/fetch/Response.h
|
| @@ -15,12 +15,14 @@
|
| #include "modules/fetch/Headers.h"
|
| #include "platform/blob/BlobData.h"
|
| #include "platform/heap/Handle.h"
|
| +#include "wtf/PassOwnPtr.h"
|
|
|
| namespace blink {
|
|
|
| class Blob;
|
| class DOMArrayBuffer;
|
| class ExceptionState;
|
| +class FetchDataConsumerHandle;
|
| class ResponseInit;
|
| class WebServiceWorkerResponse;
|
|
|
| @@ -36,7 +38,7 @@ public:
|
| static Response* create(ExecutionContext*, ExceptionState&);
|
| static Response* create(ExecutionContext*, const BodyInit&, const Dictionary&, ExceptionState&);
|
|
|
| - static Response* create(ExecutionContext*, Blob*, const ResponseInit&, ExceptionState&);
|
| + static Response* create(ExecutionContext*, PassOwnPtr<FetchDataConsumerHandle> bodyHandle, const String& contentType, const ResponseInit&, ExceptionState&);
|
| static Response* create(ExecutionContext*, FetchResponseData*);
|
| static Response* create(ExecutionContext*, const WebServiceWorkerResponse&);
|
|
|
|
|