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

Unified Diff: Source/core/inspector/InspectorFrontendHost.cpp

Issue 415043003: Oilpan: Prepare moving InspectorFrontendHost to Oilpan (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 5 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: Source/core/inspector/InspectorFrontendHost.cpp
diff --git a/Source/core/inspector/InspectorFrontendHost.cpp b/Source/core/inspector/InspectorFrontendHost.cpp
index c71023efa395fee84a84b09d86acb7541a39bba2..ec9c9ab28a63ead82c1c4f06925cdef61b92adf9 100644
--- a/Source/core/inspector/InspectorFrontendHost.cpp
+++ b/Source/core/inspector/InspectorFrontendHost.cpp
@@ -131,12 +131,17 @@ InspectorFrontendHost::~InspectorFrontendHost()
ASSERT(!m_client);
}
+void InspectorFrontendHost::trace(Visitor* visitor)
+{
+ visitor->trace(m_frontendPage);
+}
+
void InspectorFrontendHost::disconnectClient()
{
m_client = 0;
if (m_menuProvider)
m_menuProvider->disconnect();
- m_frontendPage = 0;
+ m_frontendPage = nullptr;
}
void InspectorFrontendHost::setZoomFactor(float zoom)

Powered by Google App Engine
This is Rietveld 408576698