Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(498)

Unified Diff: Source/WebCore/inspector/InspectorDOMDebuggerAgent.h

Issue 9429043: Merge 106347 - Web Inspector: DOMDebugger.setEventListenerBreakpoint should accept regular DOM even… (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/1025/
Patch Set: Created 8 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/WebCore/inspector/Inspector.json ('k') | Source/WebCore/inspector/InspectorDOMDebuggerAgent.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/WebCore/inspector/InspectorDOMDebuggerAgent.h
===================================================================
--- Source/WebCore/inspector/InspectorDOMDebuggerAgent.h (revision 108453)
+++ Source/WebCore/inspector/InspectorDOMDebuggerAgent.h (working copy)
@@ -66,6 +66,8 @@
void removeXHRBreakpoint(ErrorString*, const String& url);
void setEventListenerBreakpoint(ErrorString*, const String& eventName);
void removeEventListenerBreakpoint(ErrorString*, const String& eventName);
+ void setInstrumentationBreakpoint(ErrorString*, const String& eventName);
+ void removeInstrumentationBreakpoint(ErrorString*, const String& eventName);
void setDOMBreakpoint(ErrorString*, int nodeId, const String& type);
void removeDOMBreakpoint(ErrorString*, int nodeId, const String& type);
@@ -77,7 +79,7 @@
void didRemoveDOMNode(Node*);
void willModifyDOMAttr(Element*);
void willSendXMLHttpRequest(const String& url);
- void pauseOnNativeEventIfNeeded(const String& categoryType, const String& eventName, bool synchronous);
+ void pauseOnNativeEventIfNeeded(bool isDOMEvent, const String& eventName, bool synchronous);
virtual void clearFrontend();
virtual void discardAgent();
@@ -94,6 +96,8 @@
void updateSubtreeBreakpoints(Node*, uint32_t rootMask, bool set);
bool hasBreakpoint(Node*, int type);
void discardBindings();
+ void setBreakpoint(ErrorString*, const String& eventName);
+ void removeBreakpoint(ErrorString*, const String& eventName);
void clear();
« no previous file with comments | « Source/WebCore/inspector/Inspector.json ('k') | Source/WebCore/inspector/InspectorDOMDebuggerAgent.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698