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

Side by Side Diff: Source/WebCore/inspector/Inspector.json

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 unified diff | Download patch
« no previous file with comments | « no previous file | Source/WebCore/inspector/InspectorDOMDebuggerAgent.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 { 1 {
2 "version": { "major": "0", "minor": "1" }, 2 "version": { "major": "0", "minor": "1" },
3 "domains": [{ 3 "domains": [{
4 "domain": "Inspector", 4 "domain": "Inspector",
5 "hidden": true, 5 "hidden": true,
6 "types": [], 6 "types": [],
7 "commands": [ 7 "commands": [
8 { 8 {
9 "name": "enable", 9 "name": "enable",
10 "description": "Enables inspector domain notifications." 10 "description": "Enables inspector domain notifications."
(...skipping 2250 matching lines...) Expand 10 before | Expand all | Expand 10 after
2261 "name": "removeDOMBreakpoint", 2261 "name": "removeDOMBreakpoint",
2262 "parameters": [ 2262 "parameters": [
2263 { "name": "nodeId", "$ref": "DOM.NodeId", "description": "Id entifier of the node to remove breakpoint from." }, 2263 { "name": "nodeId", "$ref": "DOM.NodeId", "description": "Id entifier of the node to remove breakpoint from." },
2264 { "name": "type", "$ref": "DOMBreakpointType", "description" : "Type of the breakpoint to remove." } 2264 { "name": "type", "$ref": "DOMBreakpointType", "description" : "Type of the breakpoint to remove." }
2265 ], 2265 ],
2266 "description": "Removes DOM breakpoint that was set using <code> setDOMBreakpoint</code>." 2266 "description": "Removes DOM breakpoint that was set using <code> setDOMBreakpoint</code>."
2267 }, 2267 },
2268 { 2268 {
2269 "name": "setEventListenerBreakpoint", 2269 "name": "setEventListenerBreakpoint",
2270 "parameters": [ 2270 "parameters": [
2271 { "name": "eventName", "type": "string", "description": "Eve nt name to stop on (any DOM event will do)." } 2271 { "name": "eventName", "type": "string", "description": "DOM Event name to stop on (any DOM event will do)." }
2272 ], 2272 ],
2273 "description": "Sets breakpoint on particular DOM event." 2273 "description": "Sets breakpoint on particular DOM event."
2274 }, 2274 },
2275 { 2275 {
2276 "name": "removeEventListenerBreakpoint", 2276 "name": "removeEventListenerBreakpoint",
2277 "parameters": [ 2277 "parameters": [
2278 { "name": "eventName", "type": "string", "description": "Eve nt name." } 2278 { "name": "eventName", "type": "string", "description": "Eve nt name." }
2279 ], 2279 ],
2280 "description": "Removes breakpoint on particular DOM event." 2280 "description": "Removes breakpoint on particular DOM event."
2281 }, 2281 },
2282 { 2282 {
2283 "name": "setInstrumentationBreakpoint",
2284 "parameters": [
2285 { "name": "eventName", "type": "string", "description": "Ins trumentation name to stop on." }
2286 ],
2287 "description": "Sets breakpoint on particular native event.",
2288 "hidden": true
2289 },
2290 {
2291 "name": "removeInstrumentationBreakpoint",
2292 "parameters": [
2293 { "name": "eventName", "type": "string", "description": "Ins trumentation name to stop on." }
2294 ],
2295 "description": "Sets breakpoint on particular native event.",
2296 "hidden": true
2297 },
2298 {
2283 "name": "setXHRBreakpoint", 2299 "name": "setXHRBreakpoint",
2284 "parameters": [ 2300 "parameters": [
2285 { "name": "url", "type": "string", "description": "Resource URL substring. All XHRs having this substring in the URL will get stopped upon." } 2301 { "name": "url", "type": "string", "description": "Resource URL substring. All XHRs having this substring in the URL will get stopped upon." }
2286 ], 2302 ],
2287 "description": "Sets breakpoint on XMLHttpRequest." 2303 "description": "Sets breakpoint on XMLHttpRequest."
2288 }, 2304 },
2289 { 2305 {
2290 "name": "removeXHRBreakpoint", 2306 "name": "removeXHRBreakpoint",
2291 "parameters": [ 2307 "parameters": [
2292 { "name": "url", "type": "string", "description": "Resource URL substring." } 2308 { "name": "url", "type": "string", "description": "Resource URL substring." }
(...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after
2479 { "name": "workerId", "type": "integer" }, 2495 { "name": "workerId", "type": "integer" },
2480 { "name": "message", "type": "object" } 2496 { "name": "message", "type": "object" }
2481 ] 2497 ]
2482 }, 2498 },
2483 { 2499 {
2484 "name": "disconnectedFromWorker" 2500 "name": "disconnectedFromWorker"
2485 } 2501 }
2486 ] 2502 ]
2487 }] 2503 }]
2488 } 2504 }
OLDNEW
« no previous file with comments | « no previous file | Source/WebCore/inspector/InspectorDOMDebuggerAgent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698