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

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

Issue 2209603003: [DevTools] Remove V8InspectorSessionClient. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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/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 4309e5d83bb499da4f9ff5f3747c4533e470724d..3b24e37da66830dfbe49e37018b886629faf2ab5 100644
--- a/third_party/WebKit/Source/core/inspector/InspectorSession.cpp
+++ b/third_party/WebKit/Source/core/inspector/InspectorSession.cpp
@@ -39,7 +39,7 @@ InspectorSession::InspectorSession(Client* client, InstrumentingAgents* instrume
String16 v8State;
m_state->getString(kV8StateKey, &v8State);
- m_v8Session = inspector->connect(contextGroupId, this, this, savedState ? &v8State : nullptr);
+ m_v8Session = inspector->connect(contextGroupId, this, savedState ? &v8State : nullptr);
}
InspectorSession::~InspectorSession()
@@ -118,11 +118,6 @@ void InspectorSession::flushProtocolNotifications()
m_notificationQueue.clear();
}
-void InspectorSession::resumeStartup()
-{
- m_client->resumeStartup();
-}
-
DEFINE_TRACE(InspectorSession)
{
visitor->trace(m_instrumentingAgents);

Powered by Google App Engine
This is Rietveld 408576698