Index: Source/core/html/HTMLAllCollection.h |
diff --git a/Source/core/html/HTMLAllCollection.h b/Source/core/html/HTMLAllCollection.h |
index 1f8914648ff56344472bc30a2fa9e1d725661677..f6ba13a58e06a641b1e0767cdc39375e1bce2ceb 100644 |
--- a/Source/core/html/HTMLAllCollection.h |
+++ b/Source/core/html/HTMLAllCollection.h |
@@ -32,7 +32,7 @@ namespace WebCore { |
class HTMLAllCollection FINAL : public HTMLCollection { |
public: |
- static PassRefPtr<HTMLAllCollection> create(Node*, CollectionType); |
+ static PassRefPtr<HTMLAllCollection> create(ContainerNode*, CollectionType); |
virtual ~HTMLAllCollection(); |
Node* namedItemWithIndex(const AtomicString& name, unsigned index) const; |
@@ -40,7 +40,7 @@ public: |
PassRefPtr<NodeList> tags(const AtomicString&); |
private: |
- HTMLAllCollection(Node*, CollectionType); |
+ HTMLAllCollection(ContainerNode*, CollectionType); |
}; |
} // namespace WebCore |