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

Unified Diff: Source/core/testing/LayerRect.h

Issue 262093006: Oilpan: Make the Node hierarchy RefCountedGarbageCollected instead of TreeShared. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Another build fix. Created 6 years, 7 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/testing/LayerRect.h
diff --git a/Source/core/testing/LayerRect.h b/Source/core/testing/LayerRect.h
index 7074c225956531ed2a89599fb42091ea22bb5b34..f47b7e00a02d84f4a446df5d88d3c09f7a2aa27c 100644
--- a/Source/core/testing/LayerRect.h
+++ b/Source/core/testing/LayerRect.h
@@ -58,6 +58,7 @@ public:
void trace(Visitor* visitor)
{
+ visitor->trace(m_layerAssociatedNode);
visitor->trace(m_rect);
}
@@ -71,7 +72,7 @@ private:
{
}
- RefPtr<Node> m_layerAssociatedNode;
+ RefPtrWillBeMember<Node> m_layerAssociatedNode;
String m_layerType;
int m_associatedNodeOffsetX;
int m_associatedNodeOffsetY;

Powered by Google App Engine
This is Rietveld 408576698