| Index: Source/core/inspector/InspectorDOMDebuggerAgent.h
|
| diff --git a/Source/core/inspector/InspectorDOMDebuggerAgent.h b/Source/core/inspector/InspectorDOMDebuggerAgent.h
|
| index c6693b2e783eb3f78ec32bcc8143154ea359cc9b..fe2ee7cbc05223667b4217cdc023898c605247b5 100644
|
| --- a/Source/core/inspector/InspectorDOMDebuggerAgent.h
|
| +++ b/Source/core/inspector/InspectorDOMDebuggerAgent.h
|
| @@ -68,8 +68,8 @@
|
| // DOMDebugger API for InspectorFrontend
|
| virtual void setXHRBreakpoint(ErrorString*, const String& url) OVERRIDE;
|
| virtual void removeXHRBreakpoint(ErrorString*, const String& url) OVERRIDE;
|
| - virtual void setEventListenerBreakpoint(ErrorString*, const String& eventName, const String* targetName) OVERRIDE;
|
| - virtual void removeEventListenerBreakpoint(ErrorString*, const String& eventName, const String* targetName) OVERRIDE;
|
| + virtual void setEventListenerBreakpoint(ErrorString*, const String& eventName) OVERRIDE;
|
| + virtual void removeEventListenerBreakpoint(ErrorString*, const String& eventName) OVERRIDE;
|
| virtual void setInstrumentationBreakpoint(ErrorString*, const String& eventName) OVERRIDE;
|
| virtual void removeInstrumentationBreakpoint(ErrorString*, const String& eventName) OVERRIDE;
|
| virtual void setDOMBreakpoint(ErrorString*, int nodeId, const String& type) OVERRIDE;
|
| @@ -104,7 +104,7 @@
|
| InspectorDOMDebuggerAgent(InspectorDOMAgent*, InspectorDebuggerAgent*);
|
|
|
| void pauseOnNativeEventIfNeeded(PassRefPtr<JSONObject> eventData, bool synchronous);
|
| - PassRefPtr<JSONObject> preparePauseOnNativeEventData(const String& eventName, const AtomicString* targetName);
|
| + PassRefPtr<JSONObject> preparePauseOnNativeEventData(bool isDOMEvent, const String& eventName);
|
|
|
| // InspectorDOMAgent::Listener implementation.
|
| virtual void domAgentWasEnabled() OVERRIDE;
|
| @@ -120,8 +120,8 @@
|
| void descriptionForDOMEvent(Node* target, int breakpointType, bool insertion, JSONObject* description);
|
| void updateSubtreeBreakpoints(Node*, uint32_t rootMask, bool set);
|
| bool hasBreakpoint(Node*, int type);
|
| - void setBreakpoint(ErrorString*, const String& eventName, const String* targetName);
|
| - void removeBreakpoint(ErrorString*, const String& eventName, const String* targetName);
|
| + void setBreakpoint(ErrorString*, const String& eventName);
|
| + void removeBreakpoint(ErrorString*, const String& eventName);
|
|
|
| void clear();
|
|
|
|
|