| Index: Source/core/html/HTMLOptionsCollection.h
|
| diff --git a/Source/core/html/HTMLOptionsCollection.h b/Source/core/html/HTMLOptionsCollection.h
|
| index 55a591cd9ff169f3918653f24673c9c5725ed448..6927922f4405ca36f312366c87723d112f969970 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(ContainerNode*, CollectionType);
|
| + static PassRefPtr<HTMLOptionsCollection> create(ContainerNode&, CollectionType);
|
|
|
| void add(PassRefPtr<HTMLOptionElement>, ExceptionState&);
|
| void add(PassRefPtr<HTMLOptionElement>, int index, ExceptionState&);
|
| @@ -49,7 +49,7 @@ public:
|
| bool anonymousIndexedSetter(unsigned, PassRefPtr<HTMLOptionElement>, ExceptionState&);
|
|
|
| private:
|
| - explicit HTMLOptionsCollection(ContainerNode*);
|
| + explicit HTMLOptionsCollection(ContainerNode&);
|
|
|
| virtual void supportedPropertyNames(Vector<String>& names) OVERRIDE;
|
| };
|
|
|