| Index: Source/core/html/HTMLOptionsCollection.h
|
| diff --git a/Source/core/html/HTMLOptionsCollection.h b/Source/core/html/HTMLOptionsCollection.h
|
| index 42bcfed524981120003986f41b2e6a185764f2cf..96bbc7532a4b7dc94623c82b0807d7b8846a98a3 100644
|
| --- a/Source/core/html/HTMLOptionsCollection.h
|
| +++ b/Source/core/html/HTMLOptionsCollection.h
|
| @@ -35,7 +35,7 @@ typedef int ExceptionCode;
|
|
|
| class HTMLOptionsCollection : public HTMLCollection {
|
| public:
|
| - static PassRefPtr<HTMLOptionsCollection> create(Node*, CollectionType);
|
| + static PassRefPtr<HTMLOptionsCollection> create(const Handle<Node>&, CollectionType);
|
|
|
| void add(const Handle<HTMLOptionElement>&, ExceptionCode&);
|
| void add(const Handle<HTMLOptionElement>&, int index, ExceptionCode&);
|
| @@ -47,7 +47,7 @@ public:
|
| void setLength(unsigned, ExceptionCode&);
|
|
|
| private:
|
| - HTMLOptionsCollection(Node*);
|
| + HTMLOptionsCollection(const Handle<Node>&);
|
| };
|
|
|
| } //namespace
|
|
|