diff options
Diffstat (limited to 'WebCore/bindings/v8/custom/V8HTMLIFrameElementCustom.cpp')
-rw-r--r-- | WebCore/bindings/v8/custom/V8HTMLIFrameElementCustom.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/WebCore/bindings/v8/custom/V8HTMLIFrameElementCustom.cpp b/WebCore/bindings/v8/custom/V8HTMLIFrameElementCustom.cpp index 3739a4e..ce2c29a 100644 --- a/WebCore/bindings/v8/custom/V8HTMLIFrameElementCustom.cpp +++ b/WebCore/bindings/v8/custom/V8HTMLIFrameElementCustom.cpp @@ -39,8 +39,8 @@ namespace WebCore { ACCESSOR_SETTER(HTMLIFrameElementSrc) { - HTMLIFrameElement* iframe = V8Proxy::DOMWrapperToNode<HTMLIFrameElement>(info.Holder()); - String v = valueToStringWithNullCheck(value); + HTMLIFrameElement* iframe = V8DOMWrapper::convertDOMWrapperToNode<HTMLIFrameElement>(info.Holder()); + String v = toWebCoreStringWithNullCheck(value); if (!allowSettingFrameSrcToJavascriptUrl(iframe, v)) return; |