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

Unified Diff: Source/core/xml/XPathNodeSet.h

Issue 150653006: Remove the Vector::append overload that takes a Vector (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: rebase 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
« no previous file with comments | « Source/core/timing/PerformanceUserTiming.cpp ('k') | Source/modules/webaudio/AudioContext.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/xml/XPathNodeSet.h
diff --git a/Source/core/xml/XPathNodeSet.h b/Source/core/xml/XPathNodeSet.h
index c90e395ded4b6ac42b4b7b13ec5a2706831f0bfb..ab9d763ffbf87ba36ac9e9216ff78e751f392f6d 100644
--- a/Source/core/xml/XPathNodeSet.h
+++ b/Source/core/xml/XPathNodeSet.h
@@ -50,7 +50,7 @@ namespace WebCore {
// NodeSet itself does not verify that nodes in it are unique.
void append(Node* node) { m_nodes.append(node); }
void append(PassRefPtr<Node> node) { m_nodes.append(node); }
- void append(const NodeSet& nodeSet) { m_nodes.append(nodeSet.m_nodes); }
+ void append(const NodeSet& nodeSet) { m_nodes.appendVector(nodeSet.m_nodes); }
// Returns the set's first node in document order, or 0 if the set is empty.
Node* firstNode() const;
« no previous file with comments | « Source/core/timing/PerformanceUserTiming.cpp ('k') | Source/modules/webaudio/AudioContext.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698