| 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 0a60f975f2533c68861550340788ef2aa34734e5..1a706de64c72651bed95b86ee0a4c0aae47adede 100644
|
| --- a/third_party/WebKit/Source/bindings/core/v8/DictionaryHelperForCore.cpp
|
| +++ b/third_party/WebKit/Source/bindings/core/v8/DictionaryHelperForCore.cpp
|
| @@ -244,14 +244,14 @@ bool DictionaryHelper::get(const Dictionary& dictionary,
|
| v8::Local<v8::Object> window =
|
| V8Window::findInstanceInPrototypeChain(wrapper, dictionary.isolate());
|
| if (!window.IsEmpty()) {
|
| - value = toWrapperTypeInfo(window)->toEventTarget(window);
|
| + value = EventTarget::toEventTarget(window);
|
| return true;
|
| }
|
| }
|
|
|
| if (V8DOMWrapper::isWrapper(dictionary.isolate(), v8Value)) {
|
| v8::Local<v8::Object> wrapper = v8::Local<v8::Object>::Cast(v8Value);
|
| - value = toWrapperTypeInfo(wrapper)->toEventTarget(wrapper);
|
| + value = EventTarget::toEventTarget(wrapper);
|
| }
|
| return true;
|
| }
|
|
|