| Index: third_party/WebKit/Source/platform/v8_inspector/V8Console.cpp
|
| diff --git a/third_party/WebKit/Source/platform/v8_inspector/V8Console.cpp b/third_party/WebKit/Source/platform/v8_inspector/V8Console.cpp
|
| index 342df6fbe2e0faf912006eadc6a07c88562eb20c..b38063734e78832b95906168dc621f247e912d35 100644
|
| --- a/third_party/WebKit/Source/platform/v8_inspector/V8Console.cpp
|
| +++ b/third_party/WebKit/Source/platform/v8_inspector/V8Console.cpp
|
| @@ -448,7 +448,7 @@ void V8Console::memoryGetterCallback(const v8::FunctionCallbackInfo<v8::Value>&
|
| {
|
| if (V8DebuggerClient* client = ConsoleHelper(info).ensureDebuggerClient()) {
|
| v8::Local<v8::Value> memoryValue;
|
| - if (!client->memoryInfo(info.GetIsolate(), info.GetIsolate()->GetCurrentContext(), info.Holder()).ToLocal(&memoryValue))
|
| + if (!client->memoryInfo(info.GetIsolate(), info.GetIsolate()->GetCurrentContext()).ToLocal(&memoryValue))
|
| return;
|
| info.GetReturnValue().Set(memoryValue);
|
| }
|
|
|