| 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 d5319f453f05869de885768408521d50bf6970f7..b9432e1120358af2ba9eb9815bc2b418e9fe51a3 100644
|
| --- a/third_party/WebKit/Source/modules/fetch/Response.cpp
|
| +++ b/third_party/WebKit/Source/modules/fetch/Response.cpp
|
| @@ -13,7 +13,7 @@
|
| #include "bindings/core/v8/V8Binding.h"
|
| #include "bindings/core/v8/V8Blob.h"
|
| #include "bindings/core/v8/V8FormData.h"
|
| -#include "bindings/core/v8/V8HiddenValue.h"
|
| +#include "bindings/core/v8/V8PrivateProperty.h"
|
| #include "bindings/core/v8/V8URLSearchParams.h"
|
| #include "bindings/modules/v8/ByteStringSequenceSequenceOrDictionaryOrHeaders.h"
|
| #include "core/dom/DOMArrayBuffer.h"
|
| @@ -455,9 +455,8 @@ void Response::refreshBody(ScriptState* scriptState) {
|
| return;
|
| }
|
| DCHECK(response->IsObject());
|
| - V8HiddenValue::setHiddenValue(
|
| - scriptState, response.As<v8::Object>(),
|
| - V8HiddenValue::internalBodyBuffer(scriptState->isolate()), bodyBuffer);
|
| + V8PrivateProperty::getInternalBodyBuffer(scriptState->isolate())
|
| + .set(scriptState->context(), response.As<v8::Object>(), bodyBuffer);
|
| }
|
|
|
| DEFINE_TRACE(Response) {
|
|
|