| 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 8dc0b3d2083ee501abc3604f6e5405614d3ab933..fab8ee07d33d6a806fc5283dd7f9b0266924e3f1 100644
|
| --- a/third_party/WebKit/Source/platform/v8_inspector/InspectedContext.cpp
|
| +++ b/third_party/WebKit/Source/platform/v8_inspector/InspectedContext.cpp
|
| @@ -45,7 +45,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(this, info.hasMemoryOnConsole).ToLocal(&console))
|
| return;
|
| if (!global->Set(info.context, toV8StringInternalized(isolate, "console"), console).FromMaybe(false))
|
| return;
|
|
|