summaryrefslogtreecommitdiffstats
path: root/WebCore/bindings/v8/custom/V8HTMLFrameElementCustom.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/bindings/v8/custom/V8HTMLFrameElementCustom.cpp')
-rw-r--r--WebCore/bindings/v8/custom/V8HTMLFrameElementCustom.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/WebCore/bindings/v8/custom/V8HTMLFrameElementCustom.cpp b/WebCore/bindings/v8/custom/V8HTMLFrameElementCustom.cpp
index bfc4c28..4f865dd 100644
--- a/WebCore/bindings/v8/custom/V8HTMLFrameElementCustom.cpp
+++ b/WebCore/bindings/v8/custom/V8HTMLFrameElementCustom.cpp
@@ -39,7 +39,7 @@ namespace WebCore {
ACCESSOR_SETTER(HTMLFrameElementSrc)
{
- HTMLFrameElement* frame = V8Proxy::DOMWrapperToNode<HTMLFrameElement>(info.Holder());
+ HTMLFrameElement* frame = V8DOMWrapper::convertDOMWrapperToNode<HTMLFrameElement>(info.Holder());
String srcValue = toWebCoreStringWithNullCheck(value);
if (!allowSettingFrameSrcToJavascriptUrl(frame, srcValue))
@@ -50,7 +50,7 @@ ACCESSOR_SETTER(HTMLFrameElementSrc)
ACCESSOR_SETTER(HTMLFrameElementLocation)
{
- HTMLFrameElement* frame = V8Proxy::DOMWrapperToNode<HTMLFrameElement>(info.Holder());
+ HTMLFrameElement* frame = V8DOMWrapper::convertDOMWrapperToNode<HTMLFrameElement>(info.Holder());
String locationValue = toWebCoreStringWithNullCheck(value);
if (!allowSettingFrameSrcToJavascriptUrl(frame, locationValue))