| Index: Source/core/html/HTMLNameCollection.h
|
| diff --git a/Source/core/html/HTMLNameCollection.h b/Source/core/html/HTMLNameCollection.h
|
| index 25d22e178d3918d2736b719f6c7a8d0ecf1e86a2..d3ce4f672879f018d5f655524de1c608a9c2bb00 100644
|
| --- a/Source/core/html/HTMLNameCollection.h
|
| +++ b/Source/core/html/HTMLNameCollection.h
|
| @@ -33,7 +33,7 @@ class Document;
|
|
|
| class HTMLNameCollection : public HTMLCollection {
|
| public:
|
| - static PassRefPtr<HTMLNameCollection> create(Node* document, CollectionType type, const AtomicString& name)
|
| + static PassRefPtr<HTMLNameCollection> create(const Handle<Node>& document, CollectionType type, const AtomicString& name)
|
| {
|
| return adoptRef(new HTMLNameCollection(document, type, name));
|
| }
|
| @@ -41,7 +41,7 @@ public:
|
| ~HTMLNameCollection();
|
|
|
| private:
|
| - HTMLNameCollection(Node*, CollectionType, const AtomicString& name);
|
| + HTMLNameCollection(const Handle<Node>&, CollectionType, const AtomicString& name);
|
|
|
| virtual Result<Element> virtualItemAfter(unsigned& offsetInArray, const Handle<Element>&) const OVERRIDE;
|
|
|
|
|