diff options
Diffstat (limited to 'WebCore/bindings/js/JSHTMLEmbedElementCustom.cpp')
-rw-r--r-- | WebCore/bindings/js/JSHTMLEmbedElementCustom.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/WebCore/bindings/js/JSHTMLEmbedElementCustom.cpp b/WebCore/bindings/js/JSHTMLEmbedElementCustom.cpp index b9f8c12..72e695b 100644 --- a/WebCore/bindings/js/JSHTMLEmbedElementCustom.cpp +++ b/WebCore/bindings/js/JSHTMLEmbedElementCustom.cpp @@ -45,12 +45,12 @@ bool JSHTMLEmbedElement::getOwnPropertyDescriptorDelegate(ExecState* exec, const bool JSHTMLEmbedElement::putDelegate(ExecState* exec, const Identifier& propertyName, JSValue value, PutPropertySlot& slot) { - return runtimeObjectCustomPut(exec, propertyName, value, impl(), slot); + return runtimeObjectCustomPut(exec, propertyName, value, this, slot); } CallType JSHTMLEmbedElement::getCallData(CallData& callData) { - return runtimeObjectGetCallData(impl(), callData); + return runtimeObjectGetCallData(this, callData); } } // namespace WebCore |