Index: Source/core/html/HTMLAllCollection.h |
diff --git a/Source/core/html/HTMLAllCollection.h b/Source/core/html/HTMLAllCollection.h |
index ad21e2591285cb799402aaf309141e6a3b4f1d21..d70e72ddc92fa35c0adf53d0c7b73f00c4547033 100644 |
--- a/Source/core/html/HTMLAllCollection.h |
+++ b/Source/core/html/HTMLAllCollection.h |
@@ -32,13 +32,13 @@ namespace WebCore { |
class HTMLAllCollection : public HTMLCollection { |
public: |
- static PassRefPtr<HTMLAllCollection> create(Node*, CollectionType); |
+ static PassRefPtr<HTMLAllCollection> create(const Handle<Node>&, CollectionType); |
virtual ~HTMLAllCollection(); |
- Node* namedItemWithIndex(const AtomicString& name, unsigned index) const; |
+ Result<Node> namedItemWithIndex(const AtomicString& name, unsigned index) const; |
private: |
- HTMLAllCollection(Node*, CollectionType); |
+ HTMLAllCollection(const Handle<Node>&, CollectionType); |
}; |
} // namespace WebCore |