| Index: third_party/WebKit/Source/platform/v8_inspector/V8RuntimeAgentImpl.cpp
|
| diff --git a/third_party/WebKit/Source/platform/v8_inspector/V8RuntimeAgentImpl.cpp b/third_party/WebKit/Source/platform/v8_inspector/V8RuntimeAgentImpl.cpp
|
| index dc45b11875ec863bec1b1723311002cc743e717e..25fba740720418044b38586951eae4d81f6d5104 100644
|
| --- a/third_party/WebKit/Source/platform/v8_inspector/V8RuntimeAgentImpl.cpp
|
| +++ b/third_party/WebKit/Source/platform/v8_inspector/V8RuntimeAgentImpl.cpp
|
| @@ -218,7 +218,7 @@ void V8RuntimeAgentImpl::getProperties(
|
| if (!errorString->isEmpty() || exceptionDetails->isJust() || accessorPropertiesOnly.fromMaybe(false))
|
| return;
|
| v8::Local<v8::Array> propertiesArray;
|
| - if (hasInternalError(errorString, !v8::Debug::GetInternalProperties(m_debugger->isolate(), scope.object()).ToLocal(&propertiesArray)))
|
| + if (hasInternalError(errorString, !m_debugger->internalProperties(scope.object()).ToLocal(&propertiesArray)))
|
| return;
|
| std::unique_ptr<protocol::Array<InternalPropertyDescriptor>> propertiesProtocolArray = protocol::Array<InternalPropertyDescriptor>::create();
|
| for (uint32_t i = 0; i < propertiesArray->Length(); i += 2) {
|
|
|