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

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 sourceName from the EventListener object Created 5 years, 11 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/DOMModel.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 2137 matching lines...) Expand 10 before | Expand all | Expand 10 after
2148 }, 2148 },
2149 { 2149 {
2150 "id": "EventListener", 2150 "id": "EventListener",
2151 "type": "object", 2151 "type": "object",
2152 "hidden": true, 2152 "hidden": true,
2153 "properties": [ 2153 "properties": [
2154 { "name": "type", "type": "string", "description": "<code>Ev entListener</code>'s type." }, 2154 { "name": "type", "type": "string", "description": "<code>Ev entListener</code>'s type." },
2155 { "name": "useCapture", "type": "boolean", "description": "< code>EventListener</code>'s useCapture." }, 2155 { "name": "useCapture", "type": "boolean", "description": "< code>EventListener</code>'s useCapture." },
2156 { "name": "isAttribute", "type": "boolean", "description": " <code>EventListener</code>'s isAttribute." }, 2156 { "name": "isAttribute", "type": "boolean", "description": " <code>EventListener</code>'s isAttribute." },
2157 { "name": "nodeId", "$ref": "NodeId", "description": "Target <code>DOMNode</code> id." }, 2157 { "name": "nodeId", "$ref": "NodeId", "description": "Target <code>DOMNode</code> id." },
2158 { "name": "handlerBody", "type": "string", "description": "E vent handler function body." }, 2158 { "name": "handlerBody", "type": "string", "description": "E vent handler function body." },
pfeldman 2015/01/22 12:31:43 lets remove this.
apavlov 2015/02/02 11:00:29 Done.
2159 { "name": "location", "$ref": "Debugger.Location", "descript ion": "Handler code location." }, 2159 { "name": "location", "$ref": "Debugger.Location", "descript ion": "Handler code location." },
2160 { "name": "sourceName", "type": "string", "optional": true, "description": "Source script URL." },
2161 { "name": "handler", "$ref": "Runtime.RemoteObject", "option al": true, "description": "Event handler function value." } 2160 { "name": "handler", "$ref": "Runtime.RemoteObject", "option al": true, "description": "Event handler function value." }
2162 ], 2161 ],
2163 "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." 2162 "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."
2164 }, 2163 },
2165 { 2164 {
2166 "id": "RGBA", 2165 "id": "RGBA",
2167 "type": "object", 2166 "type": "object",
2168 "properties": [ 2167 "properties": [
2169 { "name": "r", "type": "integer", "description": "The red co mponent, in the [0-255] range." }, 2168 { "name": "r", "type": "integer", "description": "The red co mponent, in the [0-255] range." },
2170 { "name": "g", "type": "integer", "description": "The green component, in the [0-255] range." }, 2169 { "name": "g", "type": "integer", "description": "The green component, in the [0-255] range." },
(...skipping 2622 matching lines...) Expand 10 before | Expand all | Expand 10 after
4793 { 4792 {
4794 "name": "animationPlayerCreated", 4793 "name": "animationPlayerCreated",
4795 "parameters": [ 4794 "parameters": [
4796 { "name": "player", "$ref": "AnimationPlayer", "description" : "AnimationPlayer that was created." } 4795 { "name": "player", "$ref": "AnimationPlayer", "description" : "AnimationPlayer that was created." }
4797 ], 4796 ],
4798 "hidden": true 4797 "hidden": true
4799 } 4798 }
4800 ] 4799 ]
4801 }] 4800 }]
4802 } 4801 }
OLDNEW
« no previous file with comments | « Source/devtools/front_end/sdk/DOMModel.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698