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

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

Issue 1879293002: Modify devtools to show passive event listeners. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@2704
Patch Set: Created 4 years, 8 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 3768 matching lines...) Expand 10 before | Expand all | Expand 10 after
3779 "enum": ["subtree-modified", "attribute-modified", "node-removed "], 3779 "enum": ["subtree-modified", "attribute-modified", "node-removed "],
3780 "description": "DOM breakpoint type." 3780 "description": "DOM breakpoint type."
3781 }, 3781 },
3782 { 3782 {
3783 "id": "EventListener", 3783 "id": "EventListener",
3784 "type": "object", 3784 "type": "object",
3785 "description": "Object event listener.", 3785 "description": "Object event listener.",
3786 "properties": [ 3786 "properties": [
3787 { "name": "type", "type": "string", "description": "<code>Ev entListener</code>'s type." }, 3787 { "name": "type", "type": "string", "description": "<code>Ev entListener</code>'s type." },
3788 { "name": "useCapture", "type": "boolean", "description": "< code>EventListener</code>'s useCapture." }, 3788 { "name": "useCapture", "type": "boolean", "description": "< code>EventListener</code>'s useCapture." },
3789 { "name": "passive", "type": "boolean", "description": "<cod e>EventListener</code>'s passive flag." },
3789 { "name": "location", "$ref": "Debugger.Location", "descript ion": "Handler code location." }, 3790 { "name": "location", "$ref": "Debugger.Location", "descript ion": "Handler code location." },
3790 { "name": "handler", "$ref": "Runtime.RemoteObject", "option al": true, "description": "Event handler function value." }, 3791 { "name": "handler", "$ref": "Runtime.RemoteObject", "option al": true, "description": "Event handler function value." },
3791 { "name": "originalHandler", "$ref": "Runtime.RemoteObject", "optional": true, "description": "Event original handler function value." } 3792 { "name": "originalHandler", "$ref": "Runtime.RemoteObject", "optional": true, "description": "Event original handler function value." }
3792 ], 3793 ],
3793 "hidden": true 3794 "hidden": true
3794 } 3795 }
3795 ], 3796 ],
3796 "commands": [ 3797 "commands": [
3797 { 3798 {
3798 "name": "setDOMBreakpoint", 3799 "name": "setDOMBreakpoint",
(...skipping 1267 matching lines...) Expand 10 before | Expand all | Expand 10 after
5066 ], 5067 ],
5067 "returns": [ 5068 "returns": [
5068 { "name": "accessibilityNode", "$ref": "AXNode", "descriptio n": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists.", "o ptional": true } 5069 { "name": "accessibilityNode", "$ref": "AXNode", "descriptio n": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists.", "o ptional": true }
5069 ], 5070 ],
5070 "description": "Fetches the accessibility node for this DOM node , if it exists.", 5071 "description": "Fetches the accessibility node for this DOM node , if it exists.",
5071 "hidden": true 5072 "hidden": true
5072 } 5073 }
5073 ] 5074 ]
5074 }] 5075 }]
5075 } 5076 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698