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

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

Issue 161083002: Make NodeList::ownerNode() virtual and rename to virtualOwnerNode() (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Reupload Created 6 years, 10 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/ChildNodeList.h
diff --git a/Source/core/dom/ChildNodeList.h b/Source/core/dom/ChildNodeList.h
index b356cdfb5616f961da8fb5beae2a5dcca799d121..0fe38cc7abdc24faa58e532c019570c05693df56 100644
--- a/Source/core/dom/ChildNodeList.h
+++ b/Source/core/dom/ChildNodeList.h
@@ -59,6 +59,7 @@ private:
explicit ChildNodeList(PassRefPtr<ContainerNode> rootNode);
virtual bool isChildNodeList() const OVERRIDE { return true; }
+ virtual Node* virtualOwnerNode() const OVERRIDE;
RefPtr<ContainerNode> m_parent;
mutable CollectionIndexCache<ChildNodeList, Node> m_collectionIndexCache;

Powered by Google App Engine
This is Rietveld 408576698