diff options
Diffstat (limited to 'WebCore/bindings/v8/custom/V8HTMLSelectElementCollectionCustom.cpp')
-rw-r--r-- | WebCore/bindings/v8/custom/V8HTMLSelectElementCollectionCustom.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/WebCore/bindings/v8/custom/V8HTMLSelectElementCollectionCustom.cpp b/WebCore/bindings/v8/custom/V8HTMLSelectElementCollectionCustom.cpp index 8b3b72a..0dfa515 100644 --- a/WebCore/bindings/v8/custom/V8HTMLSelectElementCollectionCustom.cpp +++ b/WebCore/bindings/v8/custom/V8HTMLSelectElementCollectionCustom.cpp @@ -43,7 +43,7 @@ namespace WebCore { NAMED_PROPERTY_GETTER(HTMLSelectElementCollection) { INC_STATS("DOM.HTMLSelectElementCollection.NamedPropertySetter"); - HTMLSelectElement* select = V8Proxy::DOMWrapperToNode<HTMLSelectElement>(info.Holder()); + HTMLSelectElement* select = V8DOMWrapper::convertDOMWrapperToNode<HTMLSelectElement>(info.Holder()); v8::Handle<v8::Value> value = info.Holder()->GetRealNamedPropertyInPrototypeChain(name); if (!value.IsEmpty()) @@ -62,16 +62,16 @@ NAMED_PROPERTY_GETTER(HTMLSelectElementCollection) return notHandledByInterceptor(); if (items.size() == 1) - return V8Proxy::NodeToV8Object(items.at(0).get()); + return V8DOMWrapper::convertNodeToV8Object(items.at(0).release()); NodeList* list = new V8NamedNodesCollection(items); - return V8Proxy::ToV8Object(V8ClassIndex::NODELIST, list); + return V8DOMWrapper::convertToV8Object(V8ClassIndex::NODELIST, list); } INDEXED_PROPERTY_SETTER(HTMLSelectElementCollection) { INC_STATS("DOM.HTMLSelectElementCollection.IndexedPropertySetter"); - HTMLSelectElement* select = V8Proxy::DOMWrapperToNode<HTMLSelectElement>(info.Holder()); + HTMLSelectElement* select = V8DOMWrapper::convertDOMWrapperToNode<HTMLSelectElement>(info.Holder()); return toOptionsCollectionSetter(index, value, select); } |