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

Unified Diff: third_party/WebKit/Source/core/inspector/InspectorSession.cpp

Issue 2044343002: DevTools: update V8Inspector to work with the new v8_inspector API. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: review comment addressed Created 4 years, 6 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/core/inspector/InspectorSession.cpp
diff --git a/third_party/WebKit/Source/core/inspector/InspectorSession.cpp b/third_party/WebKit/Source/core/inspector/InspectorSession.cpp
index 0e37709dded2970f72b3bb534503b221ca201e3b..1d52b8ad373f6c7f5dc3b16d6d0ca3c182c7b76d 100644
--- a/third_party/WebKit/Source/core/inspector/InspectorSession.cpp
+++ b/third_party/WebKit/Source/core/inspector/InspectorSession.cpp
@@ -45,7 +45,7 @@ InspectorSession::InspectorSession(Client* client, InspectedFrames* inspectedFra
String16 v8State;
m_state->getString(kV8StateKey, &v8State);
- m_v8Session = debugger->connect(contextGroupId, this, savedState ? &v8State : nullptr);
+ m_v8Session = debugger->connect(contextGroupId, this, this, savedState ? &v8State : nullptr);
}
InspectorSession::~InspectorSession()
« no previous file with comments | « third_party/WebKit/Source/core/inspector/InspectorSession.h ('k') | third_party/WebKit/Source/platform/blink_platform.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698