| Index: third_party/WebKit/Source/platform/v8_inspector/InspectedContext.cpp
|
| diff --git a/third_party/WebKit/Source/platform/v8_inspector/InspectedContext.cpp b/third_party/WebKit/Source/platform/v8_inspector/InspectedContext.cpp
|
| index d3e4c1483230fee86d133ae6ef23a0531a9689c8..4f3adbe464dd14a8ed884fe5361aecfd21357cd1 100644
|
| --- a/third_party/WebKit/Source/platform/v8_inspector/InspectedContext.cpp
|
| +++ b/third_party/WebKit/Source/platform/v8_inspector/InspectedContext.cpp
|
| @@ -40,7 +40,7 @@ InspectedContext::InspectedContext(V8DebuggerImpl* debugger, const V8ContextInfo
|
| v8::Isolate* isolate = m_debugger->isolate();
|
| v8::Local<v8::Object> global = info.context->Global();
|
| v8::Local<v8::Object> console;
|
| - if (!V8Console::create(info.context, this, info.hasMemoryOnConsole).ToLocal(&console))
|
| + if (!V8Console::createConsole(info.context, this, info.hasMemoryOnConsole).ToLocal(&console))
|
| return;
|
| if (!global->Set(info.context, toV8StringInternalized(isolate, "console"), console).FromMaybe(false))
|
| return;
|
|
|