Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(747)

Unified Diff: third_party/WebKit/Source/platform/v8_inspector/InspectedContext.cpp

Issue 1917733002: [DevTools] Move part of CommandLineAPI to native (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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;

Powered by Google App Engine
This is Rietveld 408576698