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

Unified Diff: third_party/WebKit/Source/platform/v8_inspector/public/SimpleInspector.cpp

Issue 2215153002: [DevTools] Eliminate frameId and isContentScript from js protocol. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: navigation tracker Created 4 years, 4 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/public/SimpleInspector.cpp
diff --git a/third_party/WebKit/Source/platform/v8_inspector/public/SimpleInspector.cpp b/third_party/WebKit/Source/platform/v8_inspector/public/SimpleInspector.cpp
index e6cb62eb99e63998314c595aa7e36bf07d4cded7..ebd9fe708937c90a6d7bc7e5e06df67e34fda412 100644
--- a/third_party/WebKit/Source/platform/v8_inspector/public/SimpleInspector.cpp
+++ b/third_party/WebKit/Source/platform/v8_inspector/public/SimpleInspector.cpp
@@ -16,8 +16,7 @@ SimpleInspector::SimpleInspector(v8::Isolate* isolate, v8::Local<v8::Context> co
: m_context(context)
{
m_inspector = V8Inspector::create(isolate, this);
- m_inspector->contextCreated(V8ContextInfo(context, 1, true, "",
- "NodeJS Main Context", "", false));
+ m_inspector->contextCreated(V8ContextInfo(context, 1, "NodeJS Main Context"));
}
SimpleInspector::~SimpleInspector()

Powered by Google App Engine
This is Rietveld 408576698