Index: Source/core/svg/SVGSVGElement.cpp |
diff --git a/Source/core/svg/SVGSVGElement.cpp b/Source/core/svg/SVGSVGElement.cpp |
index 73590d7f63508a15cde253c9331702330aba6295..2a5c52b90d611829d8c51ccd5a24b6b4d82bb9c7 100644 |
--- a/Source/core/svg/SVGSVGElement.cpp |
+++ b/Source/core/svg/SVGSVGElement.cpp |
@@ -375,7 +375,7 @@ bool SVGSVGElement::checkIntersectionOrEnclosure(const SVGElement& element, cons |
return result; |
} |
-PassRefPtrWillBeRawPtr<NodeList> SVGSVGElement::collectIntersectionOrEnclosureList(const FloatRect& rect, |
+PassRefPtrWillBeRawPtr<StaticNodeList> SVGSVGElement::collectIntersectionOrEnclosureList(const FloatRect& rect, |
SVGElement* referenceElement, CheckIntersectionOrEnclosure mode) const |
{ |
WillBeHeapVector<RefPtrWillBeMember<Node> > nodes; |
@@ -400,14 +400,14 @@ PassRefPtrWillBeRawPtr<NodeList> SVGSVGElement::collectIntersectionOrEnclosureLi |
return StaticNodeList::adopt(nodes); |
} |
-PassRefPtrWillBeRawPtr<NodeList> SVGSVGElement::getIntersectionList(PassRefPtr<SVGRectTearOff> rect, SVGElement* referenceElement) const |
+PassRefPtrWillBeRawPtr<StaticNodeList> SVGSVGElement::getIntersectionList(PassRefPtr<SVGRectTearOff> rect, SVGElement* referenceElement) const |
{ |
document().updateLayoutIgnorePendingStylesheets(); |
return collectIntersectionOrEnclosureList(rect->target()->value(), referenceElement, CheckIntersection); |
} |
-PassRefPtrWillBeRawPtr<NodeList> SVGSVGElement::getEnclosureList(PassRefPtr<SVGRectTearOff> rect, SVGElement* referenceElement) const |
+PassRefPtrWillBeRawPtr<StaticNodeList> SVGSVGElement::getEnclosureList(PassRefPtr<SVGRectTearOff> rect, SVGElement* referenceElement) const |
{ |
document().updateLayoutIgnorePendingStylesheets(); |