| Index: third_party/WebKit/Source/modules/fetch/Response.cpp
|
| diff --git a/third_party/WebKit/Source/modules/fetch/Response.cpp b/third_party/WebKit/Source/modules/fetch/Response.cpp
|
| index d801f76982f2ec8e30af58812dbb4f7d75159057..6d74e14dcc3f5ec1a3e38adccb29d672b83744a5 100644
|
| --- a/third_party/WebKit/Source/modules/fetch/Response.cpp
|
| +++ b/third_party/WebKit/Source/modules/fetch/Response.cpp
|
| @@ -29,7 +29,6 @@
|
| #include "platform/network/HTTPHeaderMap.h"
|
| #include "public/platform/modules/serviceworker/WebServiceWorkerResponse.h"
|
| #include "wtf/RefPtr.h"
|
| -#include <memory>
|
|
|
| namespace blink {
|
|
|
| @@ -147,7 +146,7 @@ Response* Response::create(ScriptState* scriptState, ScriptValue bodyValue, cons
|
| if (RuntimeEnabledFeatures::responseBodyWithV8ExtraStreamEnabled()) {
|
| bodyBuffer = new BodyStreamBuffer(scriptState, bodyValue);
|
| } else {
|
| - std::unique_ptr<FetchDataConsumerHandle> bodyHandle;
|
| + OwnPtr<FetchDataConsumerHandle> bodyHandle;
|
| reader = ReadableStreamOperations::getReader(scriptState, bodyValue, exceptionState);
|
| if (exceptionState.hadException()) {
|
| reader = ScriptValue();
|
|
|