Index: Source/bindings/v8/custom/V8HTMLOptionsCollectionCustom.cpp |
diff --git a/Source/bindings/v8/custom/V8HTMLOptionsCollectionCustom.cpp b/Source/bindings/v8/custom/V8HTMLOptionsCollectionCustom.cpp |
index c1bf91ba3cc14d9d4c126f97ba22a2da8c08bf41..2f73bff9ec80ee6c7e245880b4b5ee71cfcd1a65 100644 |
--- a/Source/bindings/v8/custom/V8HTMLOptionsCollectionCustom.cpp |
+++ b/Source/bindings/v8/custom/V8HTMLOptionsCollectionCustom.cpp |
@@ -36,7 +36,6 @@ |
#include "V8NodeList.h" |
#include "bindings/v8/ExceptionState.h" |
#include "bindings/v8/V8Binding.h" |
-#include "bindings/v8/custom/V8HTMLSelectElementCustom.h" |
#include "core/dom/ExceptionCode.h" |
#include "core/dom/NamedNodesCollection.h" |
#include "core/html/HTMLOptionElement.h" |
@@ -70,13 +69,6 @@ void V8HTMLOptionsCollection::namedItemMethodCustom(const v8::FunctionCallbackIn |
getNamedItems(imp, toWebCoreString(args[0]), args); |
} |
-void V8HTMLOptionsCollection::removeMethodCustom(const v8::FunctionCallbackInfo<v8::Value>& args) |
-{ |
- HTMLOptionsCollection* imp = V8HTMLOptionsCollection::toNative(args.Holder()); |
- HTMLSelectElement* base = toHTMLSelectElement(imp->ownerNode()); |
- removeElement(base, args); |
-} |
- |
void V8HTMLOptionsCollection::addMethodCustom(const v8::FunctionCallbackInfo<v8::Value>& args) |
{ |
if (!V8HTMLOptionElement::HasInstance(args[0], args.GetIsolate(), worldType(args.GetIsolate()))) { |