| Index: Source/core/inspector/InjectedScriptHost.cpp
|
| diff --git a/Source/core/inspector/InjectedScriptHost.cpp b/Source/core/inspector/InjectedScriptHost.cpp
|
| index 8354958f1ce3609d6eca3d4a31f559af5d8986c7..fff9f24a642372d9fbc3be0b0675f55be74c6292 100644
|
| --- a/Source/core/inspector/InjectedScriptHost.cpp
|
| +++ b/Source/core/inspector/InjectedScriptHost.cpp
|
| @@ -78,9 +78,9 @@ void InjectedScriptHost::inspectImpl(PassRefPtr<JSONValue> object, PassRefPtr<JS
|
| }
|
| }
|
|
|
| -void InjectedScriptHost::getEventListenersImpl(Node* node, Vector<EventListenerInfo>& listenersArray)
|
| +void InjectedScriptHost::getEventListenersImpl(EventTarget* target, Vector<EventListenerInfo>& listenersArray)
|
| {
|
| - InspectorDOMAgent::getEventListeners(node, listenersArray, false);
|
| + InspectorDOMAgent::getEventListeners(target, listenersArray, false);
|
| }
|
|
|
| void InjectedScriptHost::clearConsoleMessages()
|
|
|