| Index: Source/core/html/HTMLOptionsCollection.h
|
| diff --git a/Source/core/html/HTMLOptionsCollection.h b/Source/core/html/HTMLOptionsCollection.h
|
| index fe5ad5d746e37a5d641dbf153e802d8cf064cd0d..da495683c905e97fd3aac1d397b6df6f7c4d33a1 100644
|
| --- a/Source/core/html/HTMLOptionsCollection.h
|
| +++ b/Source/core/html/HTMLOptionsCollection.h
|
| @@ -34,7 +34,7 @@ class HTMLSelectElement;
|
|
|
| class HTMLOptionsCollection FINAL : public HTMLCollection {
|
| public:
|
| - static PassRefPtr<HTMLOptionsCollection> create(Node*, CollectionType);
|
| + static PassRefPtr<HTMLOptionsCollection> create(ContainerNode*, CollectionType);
|
|
|
| void add(PassRefPtr<HTMLOptionElement>, ExceptionState&);
|
| void add(PassRefPtr<HTMLOptionElement>, int index, ExceptionState&);
|
| @@ -50,7 +50,7 @@ public:
|
| bool anonymousIndexedSetterRemove(unsigned, ExceptionState&);
|
|
|
| private:
|
| - explicit HTMLOptionsCollection(Node*);
|
| + explicit HTMLOptionsCollection(ContainerNode*);
|
| };
|
|
|
| } //namespace
|
|
|