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

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

Issue 783923005: Oilpan: move InspectorOverlay to the heap. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years 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
« no previous file with comments | « Source/core/inspector/InspectorOverlay.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/inspector/InspectorOverlay.cpp
diff --git a/Source/core/inspector/InspectorOverlay.cpp b/Source/core/inspector/InspectorOverlay.cpp
index 17ef71e0cc59b55f2ac30434b64d6c575e57f436..0b44c945b016b51302860e93de04dc0af6044f60 100644
--- a/Source/core/inspector/InspectorOverlay.cpp
+++ b/Source/core/inspector/InspectorOverlay.cpp
@@ -354,6 +354,15 @@ InspectorOverlay::~InspectorOverlay()
ASSERT(!m_overlayPage);
haraken 2014/12/10 23:44:22 I think this should be in #if !ENABLE(OILPAN).
sof 2014/12/11 08:11:10 It checks that freePage() has been called, ensurin
}
+void InspectorOverlay::trace(Visitor* visitor)
+{
+ visitor->trace(m_page);
+ visitor->trace(m_highlightNode);
+ visitor->trace(m_eventTargetNode);
+ visitor->trace(m_overlayPage);
+ visitor->trace(m_overlayHost);
+}
+
void InspectorOverlay::paint(GraphicsContext& context)
{
if (isEmpty())
« no previous file with comments | « Source/core/inspector/InspectorOverlay.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698