diff options
Diffstat (limited to 'WebCore/bindings/v8/V8Collection.cpp')
-rw-r--r-- | WebCore/bindings/v8/V8Collection.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/WebCore/bindings/v8/V8Collection.cpp b/WebCore/bindings/v8/V8Collection.cpp index 861f68a..c9fc9ac 100644 --- a/WebCore/bindings/v8/V8Collection.cpp +++ b/WebCore/bindings/v8/V8Collection.cpp @@ -48,14 +48,14 @@ v8::Handle<v8::Value> toOptionsCollectionSetter(uint32_t index, v8::Handle<v8::V // Check that the value is an HTMLOptionElement. If not, throw a TYPE_MISMATCH_ERR DOMException. if (!V8HTMLOptionElement::HasInstance(value)) { - V8Proxy::SetDOMException(TYPE_MISMATCH_ERR); + V8Proxy::setDOMException(TYPE_MISMATCH_ERR); return value; } - HTMLOptionElement* element = V8Proxy::DOMWrapperToNode<HTMLOptionElement>(v8::Handle<v8::Object>::Cast(value)); + HTMLOptionElement* element = V8DOMWrapper::convertDOMWrapperToNode<HTMLOptionElement>(v8::Handle<v8::Object>::Cast(value)); base->setOption(index, element, ec); - V8Proxy::SetDOMException(ec); + V8Proxy::setDOMException(ec); return value; } |