This source file includes following definitions.
- npObjectNamedGetter
- npObjectNamedSetter
- namedPropertyGetterCustom
- namedPropertyGetterCustom
- namedPropertyGetterCustom
- namedPropertySetterCustom
- namedPropertySetterCustom
- namedPropertySetterCustom
- legacyCallCustom
- legacyCallCustom
- legacyCallCustom
- npObjectIndexedGetter
- npObjectIndexedSetter
- indexedPropertyGetterCustom
- indexedPropertyGetterCustom
- indexedPropertyGetterCustom
- indexedPropertySetterCustom
- indexedPropertySetterCustom
- indexedPropertySetterCustom
#include "config.h"
#include "V8HTMLAppletElement.h"
#include "V8HTMLEmbedElement.h"
#include "V8HTMLObjectElement.h"
#include "bindings/v8/SharedPersistent.h"
#include "bindings/v8/V8Binding.h"
#include "bindings/v8/V8NPObject.h"
#include "core/frame/UseCounter.h"
namespace WebCore {
template <class C>
static void npObjectNamedGetter(v8::Local<v8::String> name, const v8::PropertyCallbackInfo<v8::Value>& info)
{
HTMLPlugInElement* impl = C::toNative(info.Holder());
RefPtr<SharedPersistent<v8::Object> > wrapper = impl->pluginWrapper();
if (!wrapper)
return;
v8::Local<v8::Object> instanceTemplate = wrapper->newLocal(info.GetIsolate());
if (instanceTemplate.IsEmpty())
return;
npObjectGetNamedProperty(instanceTemplate, name, info);
}
template <class C>
static void npObjectNamedSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::PropertyCallbackInfo<v8::Value>& info)
{
HTMLPlugInElement* impl = C::toNative(info.Holder());
RefPtr<SharedPersistent<v8::Object> > wrapper = impl->pluginWrapper();
if (!wrapper)
return;
v8::Local<v8::Object> instanceTemplate = wrapper->newLocal(info.GetIsolate());
if (instanceTemplate.IsEmpty())
return;
npObjectSetNamedProperty(instanceTemplate, name, value, info);
}
void V8HTMLAppletElement::namedPropertyGetterCustom(v8::Local<v8::String> name, const v8::PropertyCallbackInfo<v8::Value>& info)
{
npObjectNamedGetter<V8HTMLAppletElement>(name, info);
}
void V8HTMLEmbedElement::namedPropertyGetterCustom(v8::Local<v8::String> name, const v8::PropertyCallbackInfo<v8::Value>& info)
{
npObjectNamedGetter<V8HTMLEmbedElement>(name, info);
}
void V8HTMLObjectElement::namedPropertyGetterCustom(v8::Local<v8::String> name, const v8::PropertyCallbackInfo<v8::Value>& info)
{
npObjectNamedGetter<V8HTMLObjectElement>(name, info);
}
void V8HTMLAppletElement::namedPropertySetterCustom(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::PropertyCallbackInfo<v8::Value>& info)
{
npObjectNamedSetter<V8HTMLAppletElement>(name, value, info);
}
void V8HTMLEmbedElement::namedPropertySetterCustom(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::PropertyCallbackInfo<v8::Value>& info)
{
npObjectNamedSetter<V8HTMLEmbedElement>(name, value, info);
}
void V8HTMLObjectElement::namedPropertySetterCustom(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::PropertyCallbackInfo<v8::Value>& info)
{
return npObjectNamedSetter<V8HTMLObjectElement>(name, value, info);
}
void V8HTMLAppletElement::legacyCallCustom(const v8::FunctionCallbackInfo<v8::Value>& info)
{
HTMLPlugInElement* impl = V8HTMLAppletElement::toNative(info.Holder());
UseCounter::count(impl->document(), UseCounter::HTMLAppletElementLegacyCall);
npObjectInvokeDefaultHandler(info);
}
void V8HTMLEmbedElement::legacyCallCustom(const v8::FunctionCallbackInfo<v8::Value>& info)
{
HTMLPlugInElement* impl = V8HTMLEmbedElement::toNative(info.Holder());
UseCounter::count(impl->document(), UseCounter::HTMLEmbedElementLegacyCall);
npObjectInvokeDefaultHandler(info);
}
void V8HTMLObjectElement::legacyCallCustom(const v8::FunctionCallbackInfo<v8::Value>& info)
{
HTMLPlugInElement* impl = V8HTMLObjectElement::toNative(info.Holder());
UseCounter::count(impl->document(), UseCounter::HTMLObjectElementLegacyCall);
npObjectInvokeDefaultHandler(info);
}
template <class C>
void npObjectIndexedGetter(uint32_t index, const v8::PropertyCallbackInfo<v8::Value>& info)
{
HTMLPlugInElement* impl = C::toNative(info.Holder());
RefPtr<SharedPersistent<v8::Object> > wrapper = impl->pluginWrapper();
if (!wrapper)
return;
v8::Local<v8::Object> instanceTemplate = wrapper->newLocal(info.GetIsolate());
if (instanceTemplate.IsEmpty())
return;
npObjectGetIndexedProperty(instanceTemplate, index, info);
}
template <class C>
void npObjectIndexedSetter(uint32_t index, v8::Local<v8::Value> value, const v8::PropertyCallbackInfo<v8::Value>& info)
{
HTMLPlugInElement* impl = C::toNative(info.Holder());
RefPtr<SharedPersistent<v8::Object> > wrapper = impl->pluginWrapper();
if (!wrapper)
return;
v8::Local<v8::Object> instanceTemplate = wrapper->newLocal(info.GetIsolate());
if (instanceTemplate.IsEmpty())
return;
npObjectSetIndexedProperty(instanceTemplate, index, value, info);
}
void V8HTMLAppletElement::indexedPropertyGetterCustom(uint32_t index, const v8::PropertyCallbackInfo<v8::Value>& info)
{
npObjectIndexedGetter<V8HTMLAppletElement>(index, info);
}
void V8HTMLEmbedElement::indexedPropertyGetterCustom(uint32_t index, const v8::PropertyCallbackInfo<v8::Value>& info)
{
npObjectIndexedGetter<V8HTMLEmbedElement>(index, info);
}
void V8HTMLObjectElement::indexedPropertyGetterCustom(uint32_t index, const v8::PropertyCallbackInfo<v8::Value>& info)
{
npObjectIndexedGetter<V8HTMLObjectElement>(index, info);
}
void V8HTMLAppletElement::indexedPropertySetterCustom(uint32_t index, v8::Local<v8::Value> value, const v8::PropertyCallbackInfo<v8::Value>& info)
{
npObjectIndexedSetter<V8HTMLAppletElement>(index, value, info);
}
void V8HTMLEmbedElement::indexedPropertySetterCustom(uint32_t index, v8::Local<v8::Value> value, const v8::PropertyCallbackInfo<v8::Value>& info)
{
npObjectIndexedSetter<V8HTMLEmbedElement>(index, value, info);
}
void V8HTMLObjectElement::indexedPropertySetterCustom(uint32_t index, v8::Local<v8::Value> value, const v8::PropertyCallbackInfo<v8::Value>& info)
{
npObjectIndexedSetter<V8HTMLObjectElement>(index, value, info);
}
}