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

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

Issue 842323005: DevTools: Clean up the Event Listeners pane data representation (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Remove listenerBody from the protocol Created 5 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 | Annotate | Revision Log
« no previous file with comments | « Source/devtools/front_end/sdk/Script.js ('k') | no next file » | 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": "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 2148 matching lines...) Expand 10 before | Expand all | Expand 10 after
2159 }, 2159 },
2160 { 2160 {
2161 "id": "EventListener", 2161 "id": "EventListener",
2162 "type": "object", 2162 "type": "object",
2163 "hidden": true, 2163 "hidden": true,
2164 "properties": [ 2164 "properties": [
2165 { "name": "type", "type": "string", "description": "<code>Ev entListener</code>'s type." }, 2165 { "name": "type", "type": "string", "description": "<code>Ev entListener</code>'s type." },
2166 { "name": "useCapture", "type": "boolean", "description": "< code>EventListener</code>'s useCapture." }, 2166 { "name": "useCapture", "type": "boolean", "description": "< code>EventListener</code>'s useCapture." },
2167 { "name": "isAttribute", "type": "boolean", "description": " <code>EventListener</code>'s isAttribute." }, 2167 { "name": "isAttribute", "type": "boolean", "description": " <code>EventListener</code>'s isAttribute." },
2168 { "name": "nodeId", "$ref": "NodeId", "description": "Target <code>DOMNode</code> id." }, 2168 { "name": "nodeId", "$ref": "NodeId", "description": "Target <code>DOMNode</code> id." },
2169 { "name": "handlerBody", "type": "string", "description": "E vent handler function body." },
2170 { "name": "location", "$ref": "Debugger.Location", "descript ion": "Handler code location." }, 2169 { "name": "location", "$ref": "Debugger.Location", "descript ion": "Handler code location." },
2171 { "name": "sourceName", "type": "string", "optional": true, "description": "Source script URL." },
2172 { "name": "handler", "$ref": "Runtime.RemoteObject", "option al": true, "description": "Event handler function value." } 2170 { "name": "handler", "$ref": "Runtime.RemoteObject", "option al": true, "description": "Event handler function value." }
2173 ], 2171 ],
2174 "description": "DOM interaction is implemented in terms of mirro r objects that represent the actual DOM nodes. DOMNode is a base node mirror typ e." 2172 "description": "DOM interaction is implemented in terms of mirro r objects that represent the actual DOM nodes. DOMNode is a base node mirror typ e."
2175 }, 2173 },
2176 { 2174 {
2177 "id": "RGBA", 2175 "id": "RGBA",
2178 "type": "object", 2176 "type": "object",
2179 "properties": [ 2177 "properties": [
2180 { "name": "r", "type": "integer", "description": "The red co mponent, in the [0-255] range." }, 2178 { "name": "r", "type": "integer", "description": "The red co mponent, in the [0-255] range." },
2181 { "name": "g", "type": "integer", "description": "The green component, in the [0-255] range." }, 2179 { "name": "g", "type": "integer", "description": "The green component, in the [0-255] range." },
(...skipping 2625 matching lines...) Expand 10 before | Expand all | Expand 10 after
4807 { 4805 {
4808 "name": "animationPlayerCreated", 4806 "name": "animationPlayerCreated",
4809 "parameters": [ 4807 "parameters": [
4810 { "name": "player", "$ref": "AnimationPlayer", "description" : "AnimationPlayer that was created." } 4808 { "name": "player", "$ref": "AnimationPlayer", "description" : "AnimationPlayer that was created." }
4811 ], 4809 ],
4812 "hidden": true 4810 "hidden": true
4813 } 4811 }
4814 ] 4812 ]
4815 }] 4813 }]
4816 } 4814 }
OLDNEW
« no previous file with comments | « Source/devtools/front_end/sdk/Script.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698