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

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

Issue 1601283003: DevTools: deoilpanize inspector/v8 and related classes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: review comments addressed. Created 4 years, 11 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/InspectorBaseAgent.cpp
diff --git a/third_party/WebKit/Source/core/inspector/InspectorBaseAgent.cpp b/third_party/WebKit/Source/core/inspector/InspectorBaseAgent.cpp
index 7b312a4494291da1eeb07e982c807c4ed4550f8c..77789b4d4d061dcc28b05d7c88f48ecc2813d5e8 100644
--- a/third_party/WebKit/Source/core/inspector/InspectorBaseAgent.cpp
+++ b/third_party/WebKit/Source/core/inspector/InspectorBaseAgent.cpp
@@ -42,15 +42,11 @@ InspectorAgent::InspectorAgent(const String& name)
InspectorAgent::~InspectorAgent()
{
-#if ENABLE(OILPAN)
- m_state = nullptr;
-#endif
}
DEFINE_TRACE(InspectorAgent)
{
visitor->trace(m_instrumentingAgents);
- visitor->trace(m_state);
}
void InspectorAgent::appended(InstrumentingAgents* instrumentingAgents, InspectorState* inspectorState)
@@ -111,7 +107,6 @@ void InspectorAgentRegistry::flushPendingProtocolNotifications()
DEFINE_TRACE(InspectorAgentRegistry)
{
visitor->trace(m_instrumentingAgents);
- visitor->trace(m_inspectorState);
#if ENABLE(OILPAN)
visitor->trace(m_agents);
#endif

Powered by Google App Engine
This is Rietveld 408576698