Index: Source/core/html/HTMLOptionsCollection.h |
diff --git a/Source/core/html/HTMLOptionsCollection.h b/Source/core/html/HTMLOptionsCollection.h |
index 6927922f4405ca36f312366c87723d112f969970..73adce94f74f580de487a56449dd02b3663be083 100644 |
--- a/Source/core/html/HTMLOptionsCollection.h |
+++ b/Source/core/html/HTMLOptionsCollection.h |
@@ -36,8 +36,8 @@ class HTMLOptionsCollection FINAL : public HTMLCollection { |
public: |
static PassRefPtr<HTMLOptionsCollection> create(ContainerNode&, CollectionType); |
- void add(PassRefPtr<HTMLOptionElement>, ExceptionState&); |
- void add(PassRefPtr<HTMLOptionElement>, int index, ExceptionState&); |
+ void add(PassRefPtrWillBeRawPtr<HTMLOptionElement>, ExceptionState&); |
+ void add(PassRefPtrWillBeRawPtr<HTMLOptionElement>, int index, ExceptionState&); |
void remove(int index); |
void remove(HTMLOptionElement*); |
@@ -46,7 +46,7 @@ public: |
void setLength(unsigned, ExceptionState&); |
void namedGetter(const AtomicString& name, bool&, RefPtr<NodeList>&, bool&, RefPtr<Element>&); |
- bool anonymousIndexedSetter(unsigned, PassRefPtr<HTMLOptionElement>, ExceptionState&); |
+ bool anonymousIndexedSetter(unsigned, PassRefPtrWillBeRawPtr<HTMLOptionElement>, ExceptionState&); |
private: |
explicit HTMLOptionsCollection(ContainerNode&); |