| Index: third_party/WebKit/Source/bindings/core/v8/DictionaryHelperForCore.cpp
|
| diff --git a/third_party/WebKit/Source/bindings/core/v8/DictionaryHelperForCore.cpp b/third_party/WebKit/Source/bindings/core/v8/DictionaryHelperForCore.cpp
|
| index 7d502cf547cf6337c17e7fbac596e0c0f97b0d89..6b38222efba0dbbf2a7e451b89269443b46e9828 100644
|
| --- a/third_party/WebKit/Source/bindings/core/v8/DictionaryHelperForCore.cpp
|
| +++ b/third_party/WebKit/Source/bindings/core/v8/DictionaryHelperForCore.cpp
|
| @@ -30,7 +30,6 @@
|
| #include "bindings/core/v8/V8ArrayBufferView.h"
|
| #include "bindings/core/v8/V8Binding.h"
|
| #include "bindings/core/v8/V8Element.h"
|
| -#include "bindings/core/v8/V8EventTarget.h"
|
| #include "bindings/core/v8/V8MessagePort.h"
|
| #include "bindings/core/v8/V8TextTrack.h"
|
| #include "bindings/core/v8/V8Uint8Array.h"
|
| @@ -229,18 +228,6 @@ bool DictionaryHelper::get(const Dictionary& dictionary,
|
| }
|
|
|
| template <>
|
| -bool DictionaryHelper::get(const Dictionary& dictionary,
|
| - const StringView& key,
|
| - Member<EventTarget>& value) {
|
| - v8::Local<v8::Value> v8Value;
|
| - if (!dictionary.get(key, v8Value))
|
| - return false;
|
| -
|
| - value = toEventTarget(dictionary.isolate(), v8Value);
|
| - return true;
|
| -}
|
| -
|
| -template <>
|
| CORE_EXPORT bool DictionaryHelper::get(const Dictionary& dictionary,
|
| const StringView& key,
|
| Vector<String>& value) {
|
|
|