Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(245)

Unified Diff: Source/bindings/core/v8/custom/V8HTMLPlugInElementCustom.cpp

Issue 1291723004: Remove all support for <applet> handling in Chrome. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/bindings/core/v8/V8NPObject.cpp ('k') | Source/core/core.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
« no previous file with comments | « Source/bindings/core/v8/V8NPObject.cpp ('k') | Source/core/core.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698