| 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 caabf543ea5a321424e8f0063a65ef75a6eb4bbd..8ef90f614f83e10ee9adb02487824fc6924b4e68 100644
|
| --- a/third_party/WebKit/Source/bindings/core/v8/DictionaryHelperForCore.cpp
|
| +++ b/third_party/WebKit/Source/bindings/core/v8/DictionaryHelperForCore.cpp
|
| @@ -129,18 +129,6 @@ CORE_EXPORT bool DictionaryHelper::get(const Dictionary& dictionary,
|
| return getStringType(dictionary, key, value);
|
| }
|
|
|
| -template <>
|
| -bool DictionaryHelper::get(const Dictionary& dictionary,
|
| - const StringView& key,
|
| - ScriptValue& value) {
|
| - v8::Local<v8::Value> v8Value;
|
| - if (!dictionary.get(key, v8Value))
|
| - return false;
|
| -
|
| - value = ScriptValue(ScriptState::current(dictionary.isolate()), v8Value);
|
| - return true;
|
| -}
|
| -
|
| template <typename NumericType>
|
| bool getNumericType(const Dictionary& dictionary,
|
| const StringView& key,
|
|
|