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

Unified Diff: Source/core/dom/LiveNodeListBase.h

Issue 406523002: Oilpan: Make sure that vtables for garbage collected mixin objects have (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix non-oilpan compilation 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/dom/LiveNodeListBase.h
diff --git a/Source/core/dom/LiveNodeListBase.h b/Source/core/dom/LiveNodeListBase.h
index 756a9dc3315533823f1c4731daa63b301768d180..a87b7ebaf58da6244dbce8de36b1e932d089b4ff 100644
--- a/Source/core/dom/LiveNodeListBase.h
+++ b/Source/core/dom/LiveNodeListBase.h
@@ -94,7 +94,7 @@ protected:
template <class NodeListType>
static Element* traverseMatchingElementsBackwardToOffset(const NodeListType&, unsigned offset, Element& currentElement, unsigned& currentOffset);
- void trace(Visitor* visitor) { visitor->trace(m_ownerNode); }
+ virtual void trace(Visitor* visitor) { visitor->trace(m_ownerNode); }
private:
RefPtrWillBeMember<ContainerNode> m_ownerNode; // Cannot be null.
« no previous file with comments | « no previous file | Source/core/html/canvas/WebGLRenderingContextBase.h » ('j') | Source/platform/Supplementable.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698