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

Side by Side Diff: Source/devtools/protocol.json

Issue 1268353005: [DevTools] Support JQuery event listeners (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Added UI Created 5 years, 4 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
OLDNEW
1 { 1 {
2 "version": { "major": "1", "minor": "1" }, 2 "version": { "major": "1", "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 3904 matching lines...) Expand 10 before | Expand all | Expand 10 after
3915 "name": "removeXHRBreakpoint", 3915 "name": "removeXHRBreakpoint",
3916 "parameters": [ 3916 "parameters": [
3917 { "name": "url", "type": "string", "description": "Resource URL substring." } 3917 { "name": "url", "type": "string", "description": "Resource URL substring." }
3918 ], 3918 ],
3919 "description": "Removes breakpoint from XMLHttpRequest." 3919 "description": "Removes breakpoint from XMLHttpRequest."
3920 }, 3920 },
3921 { 3921 {
3922 "name": "getEventListeners", 3922 "name": "getEventListeners",
3923 "hidden": true, 3923 "hidden": true,
3924 "parameters": [ 3924 "parameters": [
3925 { "name": "objectId", "$ref": "Runtime.RemoteObjectId", "des cription": "Identifier of the object to return listeners for." } 3925 { "name": "objectId", "$ref": "Runtime.RemoteObjectId", "des cription": "Identifier of the object to return listeners for." },
3926 { "name": "resolveFrameworkHandlers", "type": "boolean", "op tional": true, "description": "If true event handlers will be resolved for suppo rted frameworks." }
3926 ], 3927 ],
3927 "returns": [ 3928 "returns": [
3928 { "name": "listeners", "type": "array", "items": { "$ref": " EventListener" }, "description": "Array of relevant listeners." } 3929 { "name": "listeners", "type": "array", "items": { "$ref": " EventListener" }, "description": "Array of relevant listeners." }
3929 ], 3930 ],
3930 "description": "Returns event listeners of the given object." 3931 "description": "Returns event listeners of the given object."
3931 } 3932 }
3932 ] 3933 ]
3933 }, 3934 },
3934 { 3935 {
3935 "domain": "Profiler", 3936 "domain": "Profiler",
(...skipping 1169 matching lines...) Expand 10 before | Expand all | Expand 10 after
5105 ], 5106 ],
5106 "returns": [ 5107 "returns": [
5107 { "name": "accessibilityNode", "$ref": "AXNode", "descriptio n": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists.", "o ptional": true } 5108 { "name": "accessibilityNode", "$ref": "AXNode", "descriptio n": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists.", "o ptional": true }
5108 ], 5109 ],
5109 "description": "Fetches the accessibility node for this DOM node , if it exists.", 5110 "description": "Fetches the accessibility node for this DOM node , if it exists.",
5110 "hidden": true 5111 "hidden": true
5111 } 5112 }
5112 ] 5113 ]
5113 }] 5114 }]
5114 } 5115 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698