X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=src%2Fthird_party%2FWebKit%2FSource%2Fcore%2Fhtml%2FHTMLOptionsCollection.h;h=73adce94f74f580de487a56449dd02b3663be083;hb=004985e17e624662a4c85c76a7654039dc83f028;hp=6927922f4405ca36f312366c87723d112f969970;hpb=2f108dbacb161091e42a3479f4e171339b7e7623;p=platform%2Fframework%2Fweb%2Fcrosswalk.git diff --git a/src/third_party/WebKit/Source/core/html/HTMLOptionsCollection.h b/src/third_party/WebKit/Source/core/html/HTMLOptionsCollection.h index 6927922..73adce9 100644 --- a/src/third_party/WebKit/Source/core/html/HTMLOptionsCollection.h +++ b/src/third_party/WebKit/Source/core/html/HTMLOptionsCollection.h @@ -36,8 +36,8 @@ class HTMLOptionsCollection FINAL : public HTMLCollection { public: static PassRefPtr create(ContainerNode&, CollectionType); - void add(PassRefPtr, ExceptionState&); - void add(PassRefPtr, int index, ExceptionState&); + void add(PassRefPtrWillBeRawPtr, ExceptionState&); + void add(PassRefPtrWillBeRawPtr, 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&, bool&, RefPtr&); - bool anonymousIndexedSetter(unsigned, PassRefPtr, ExceptionState&); + bool anonymousIndexedSetter(unsigned, PassRefPtrWillBeRawPtr, ExceptionState&); private: explicit HTMLOptionsCollection(ContainerNode&);