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

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

Issue 2034533002: [DevTools] Add removeFunction to EventListener protocol object (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 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 | « third_party/WebKit/Source/devtools/front_end/sdk/RuntimeModel.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 3835 matching lines...) Expand 10 before | Expand all | Expand 10 after
3846 { 3846 {
3847 "id": "EventListener", 3847 "id": "EventListener",
3848 "type": "object", 3848 "type": "object",
3849 "description": "Object event listener.", 3849 "description": "Object event listener.",
3850 "properties": [ 3850 "properties": [
3851 { "name": "type", "type": "string", "description": "<code>Ev entListener</code>'s type." }, 3851 { "name": "type", "type": "string", "description": "<code>Ev entListener</code>'s type." },
3852 { "name": "useCapture", "type": "boolean", "description": "< code>EventListener</code>'s useCapture." }, 3852 { "name": "useCapture", "type": "boolean", "description": "< code>EventListener</code>'s useCapture." },
3853 { "name": "passive", "type": "boolean", "description": "<cod e>EventListener</code>'s passive flag." }, 3853 { "name": "passive", "type": "boolean", "description": "<cod e>EventListener</code>'s passive flag." },
3854 { "name": "location", "$ref": "Debugger.Location", "descript ion": "Handler code location." }, 3854 { "name": "location", "$ref": "Debugger.Location", "descript ion": "Handler code location." },
3855 { "name": "handler", "$ref": "Runtime.RemoteObject", "option al": true, "description": "Event handler function value." }, 3855 { "name": "handler", "$ref": "Runtime.RemoteObject", "option al": true, "description": "Event handler function value." },
3856 { "name": "originalHandler", "$ref": "Runtime.RemoteObject", "optional": true, "description": "Event original handler function value." } 3856 { "name": "originalHandler", "$ref": "Runtime.RemoteObject", "optional": true, "description": "Event original handler function value." },
3857 { "name": "removeFunction", "$ref": "Runtime.RemoteObject", "optional": true, "description": "Event listener remove function." }
3857 ], 3858 ],
3858 "hidden": true 3859 "hidden": true
3859 } 3860 }
3860 ], 3861 ],
3861 "commands": [ 3862 "commands": [
3862 { 3863 {
3863 "name": "setDOMBreakpoint", 3864 "name": "setDOMBreakpoint",
3864 "parameters": [ 3865 "parameters": [
3865 { "name": "nodeId", "$ref": "DOM.NodeId", "description": "Id entifier of the node to set breakpoint on." }, 3866 { "name": "nodeId", "$ref": "DOM.NodeId", "description": "Id entifier of the node to set breakpoint on." },
3866 { "name": "type", "$ref": "DOMBreakpointType", "description" : "Type of the operation to stop upon." } 3867 { "name": "type", "$ref": "DOMBreakpointType", "description" : "Type of the operation to stop upon." }
(...skipping 1311 matching lines...) Expand 10 before | Expand all | Expand 10 after
5178 "parameters": [ 5179 "parameters": [
5179 { "name": "origin", "type": "string", "description": "Securi ty origin." }, 5180 { "name": "origin", "type": "string", "description": "Securi ty origin." },
5180 { "name": "storageTypes", "type": "string", "description": " Comma separated origin names." } 5181 { "name": "storageTypes", "type": "string", "description": " Comma separated origin names." }
5181 ], 5182 ],
5182 "description": "Clears storage for origin.", 5183 "description": "Clears storage for origin.",
5183 "handlers": ["browser"] 5184 "handlers": ["browser"]
5184 } 5185 }
5185 ] 5186 ]
5186 }] 5187 }]
5187 } 5188 }
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/sdk/RuntimeModel.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698