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

Unified Diff: Source/core/dom/NodeList.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/NodeList.h
diff --git a/Source/core/dom/NodeList.h b/Source/core/dom/NodeList.h
index 2a99530bb76993d1ad97027efa8443e7386767c8..76c51dae695d72694d45b99f3ee92b2bc83ad55c 100644
--- a/Source/core/dom/NodeList.h
+++ b/Source/core/dom/NodeList.h
@@ -41,11 +41,10 @@ public:
virtual Node* item(unsigned index) const = 0;
// Other methods (not part of DOM)
- virtual bool isLiveNodeList() const { return false; }
virtual bool isEmptyNodeList() const { return false; }
virtual bool isChildNodeList() const { return false; }
- Node* ownerNode() const;
+ virtual Node* virtualOwnerNode() const { return 0; }
protected:
NodeList()

Powered by Google App Engine
This is Rietveld 408576698