| 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 c728205d7558e7934734666a772e0c85bc8fbec5..8d52e504492009ea90c6a2a68fb2abfc4340f6b4 100644
|
| --- a/third_party/WebKit/Source/bindings/core/v8/DictionaryHelperForCore.cpp
|
| +++ b/third_party/WebKit/Source/bindings/core/v8/DictionaryHelperForCore.cpp
|
| @@ -189,7 +189,7 @@ bool DictionaryHelper::get(const Dictionary& dictionary, const String& key, unsi
|
| }
|
|
|
| template <>
|
| -bool DictionaryHelper::get(const Dictionary& dictionary, const String& key, RefPtrWillBeMember<DOMWindow>& value)
|
| +bool DictionaryHelper::get(const Dictionary& dictionary, const String& key, Member<DOMWindow>& value)
|
| {
|
| v8::Local<v8::Value> v8Value;
|
| if (!dictionary.get(key, v8Value))
|
| @@ -223,7 +223,7 @@ bool DictionaryHelper::get(const Dictionary& dictionary, const String& key, Memb
|
| }
|
|
|
| template <>
|
| -bool DictionaryHelper::get(const Dictionary& dictionary, const String& key, RefPtrWillBeMember<EventTarget>& value)
|
| +bool DictionaryHelper::get(const Dictionary& dictionary, const String& key, Member<EventTarget>& value)
|
| {
|
| v8::Local<v8::Value> v8Value;
|
| if (!dictionary.get(key, v8Value))
|
|
|