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

Unified Diff: Source/devtools/protocol.json

Issue 1149713006: [DevTools] Removed DOMAgent.getEventListenerForNode (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@extract-event-listeners-tree-outline
Patch Set: Created 5 years, 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/devtools/front_end/sdk/DOMModel.js ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/devtools/protocol.json
diff --git a/Source/devtools/protocol.json b/Source/devtools/protocol.json
index 879b384a1eacd5bf6133abea0824e4f59df06cbf..962faafc83a498bb489fd32f7996adf9da096e10 100644
--- a/Source/devtools/protocol.json
+++ b/Source/devtools/protocol.json
@@ -2153,20 +2153,6 @@
"description": "DOM interaction is implemented in terms of mirror objects that represent the actual DOM nodes. DOMNode is a base node mirror type."
},
{
- "id": "EventListener",
- "type": "object",
- "hidden": true,
- "properties": [
- { "name": "type", "type": "string", "description": "<code>EventListener</code>'s type." },
- { "name": "useCapture", "type": "boolean", "description": "<code>EventListener</code>'s useCapture." },
- { "name": "isAttribute", "type": "boolean", "description": "<code>EventListener</code>'s isAttribute." },
- { "name": "nodeId", "$ref": "NodeId", "description": "Target <code>DOMNode</code> id." },
- { "name": "location", "$ref": "Debugger.Location", "description": "Handler code location." },
- { "name": "handler", "$ref": "Runtime.RemoteObject", "optional": true, "description": "Event handler function value." }
- ],
- "description": "DOM interaction is implemented in terms of mirror objects that represent the actual DOM nodes. DOMNode is a base node mirror type."
- },
- {
"id": "RGBA",
"type": "object",
"properties": [
@@ -2341,18 +2327,6 @@
"description": "Removes attribute with given name from an element with given id."
},
{
- "name": "getEventListenersForNode",
- "parameters": [
- { "name": "nodeId", "$ref": "NodeId", "description": "Id of the node to get listeners for." },
- { "name": "objectGroup", "type": "string", "optional": true, "description": "Symbolic group name for handler value. Handler value is not returned without this parameter specified." }
- ],
- "returns": [
- { "name": "listeners", "type": "array", "items": { "$ref": "EventListener" }, "description": "Array of relevant listeners." }
- ],
- "description": "Returns event listeners relevant to the node.",
- "hidden": true
- },
- {
"name": "getOuterHTML",
"parameters": [
{ "name": "nodeId", "$ref": "NodeId", "description": "Id of the node to get markup for." }
« 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