| Index: Source/bindings/core/v8/custom/V8HTMLPlugInElementCustom.cpp
|
| diff --git a/Source/bindings/core/v8/custom/V8HTMLPlugInElementCustom.cpp b/Source/bindings/core/v8/custom/V8HTMLPlugInElementCustom.cpp
|
| index ccea000d45694e287a81dce082d568a9d1c31ae2..57ea920450818589aa8982ed2548d2a85f37c597 100644
|
| --- a/Source/bindings/core/v8/custom/V8HTMLPlugInElementCustom.cpp
|
| +++ b/Source/bindings/core/v8/custom/V8HTMLPlugInElementCustom.cpp
|
| @@ -34,7 +34,6 @@
|
| #include "bindings/core/v8/NPV8Object.h"
|
| #include "bindings/core/v8/SharedPersistent.h"
|
| #include "bindings/core/v8/V8Binding.h"
|
| -#include "bindings/core/v8/V8HTMLAppletElement.h"
|
| #include "bindings/core/v8/V8HTMLEmbedElement.h"
|
| #include "bindings/core/v8/V8HTMLObjectElement.h"
|
| #include "bindings/core/v8/V8NPObject.h"
|
| @@ -118,13 +117,6 @@ void setScriptableObjectProperty(PropertyType property, v8::Local<v8::Value> val
|
| }
|
| } // namespace
|
|
|
| -void V8HTMLAppletElement::namedPropertyGetterCustom(v8::Local<v8::Name> name, const v8::PropertyCallbackInfo<v8::Value>& info)
|
| -{
|
| - if (!name->IsString())
|
| - return;
|
| - getScriptableObjectProperty<V8HTMLAppletElement>(name.As<v8::String>(), info);
|
| -}
|
| -
|
| void V8HTMLEmbedElement::namedPropertyGetterCustom(v8::Local<v8::Name> name, const v8::PropertyCallbackInfo<v8::Value>& info)
|
| {
|
| if (!name->IsString())
|
| @@ -139,13 +131,6 @@ void V8HTMLObjectElement::namedPropertyGetterCustom(v8::Local<v8::Name> name, co
|
| getScriptableObjectProperty<V8HTMLObjectElement>(name.As<v8::String>(), info);
|
| }
|
|
|
| -void V8HTMLAppletElement::namedPropertySetterCustom(v8::Local<v8::Name> name, v8::Local<v8::Value> value, const v8::PropertyCallbackInfo<v8::Value>& info)
|
| -{
|
| - if (!name->IsString())
|
| - return;
|
| - setScriptableObjectProperty<V8HTMLAppletElement>(name.As<v8::String>(), value, info);
|
| -}
|
| -
|
| void V8HTMLEmbedElement::namedPropertySetterCustom(v8::Local<v8::Name> name, v8::Local<v8::Value> value, const v8::PropertyCallbackInfo<v8::Value>& info)
|
| {
|
| if (!name->IsString())
|
| @@ -160,11 +145,6 @@ void V8HTMLObjectElement::namedPropertySetterCustom(v8::Local<v8::Name> name, v8
|
| setScriptableObjectProperty<V8HTMLObjectElement>(name.As<v8::String>(), value, info);
|
| }
|
|
|
| -void V8HTMLAppletElement::indexedPropertyGetterCustom(uint32_t index, const v8::PropertyCallbackInfo<v8::Value>& info)
|
| -{
|
| - getScriptableObjectProperty<V8HTMLAppletElement>(index, info);
|
| -}
|
| -
|
| void V8HTMLEmbedElement::indexedPropertyGetterCustom(uint32_t index, const v8::PropertyCallbackInfo<v8::Value>& info)
|
| {
|
| getScriptableObjectProperty<V8HTMLEmbedElement>(index, info);
|
| @@ -175,11 +155,6 @@ void V8HTMLObjectElement::indexedPropertyGetterCustom(uint32_t index, const v8::
|
| getScriptableObjectProperty<V8HTMLObjectElement>(index, info);
|
| }
|
|
|
| -void V8HTMLAppletElement::indexedPropertySetterCustom(uint32_t index, v8::Local<v8::Value> value, const v8::PropertyCallbackInfo<v8::Value>& info)
|
| -{
|
| - setScriptableObjectProperty<V8HTMLAppletElement>(index, value, info);
|
| -}
|
| -
|
| void V8HTMLEmbedElement::indexedPropertySetterCustom(uint32_t index, v8::Local<v8::Value> value, const v8::PropertyCallbackInfo<v8::Value>& info)
|
| {
|
| setScriptableObjectProperty<V8HTMLEmbedElement>(index, value, info);
|
|
|