summaryrefslogtreecommitdiffstats
path: root/WebCore/bindings/js/JSHTMLFrameElementCustom.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/bindings/js/JSHTMLFrameElementCustom.cpp')
-rw-r--r--WebCore/bindings/js/JSHTMLFrameElementCustom.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/WebCore/bindings/js/JSHTMLFrameElementCustom.cpp b/WebCore/bindings/js/JSHTMLFrameElementCustom.cpp
index 594349a..a97a72a 100644
--- a/WebCore/bindings/js/JSHTMLFrameElementCustom.cpp
+++ b/WebCore/bindings/js/JSHTMLFrameElementCustom.cpp
@@ -47,7 +47,7 @@ static inline bool allowSettingJavascriptURL(ExecState* exec, HTMLFrameElement*
return true;
}
-void JSHTMLFrameElement::setSrc(ExecState* exec, JSValue* value)
+void JSHTMLFrameElement::setSrc(ExecState* exec, JSValuePtr value)
{
HTMLFrameElement* imp = static_cast<HTMLFrameElement*>(impl());
String srcValue = valueToStringWithNullCheck(exec, value);
@@ -59,7 +59,7 @@ void JSHTMLFrameElement::setSrc(ExecState* exec, JSValue* value)
return;
}
-void JSHTMLFrameElement::setLocation(ExecState* exec, JSValue* value)
+void JSHTMLFrameElement::setLocation(ExecState* exec, JSValuePtr value)
{
HTMLFrameElement* imp = static_cast<HTMLFrameElement*>(impl());
String locationValue = valueToStringWithNullCheck(exec, value);