OLD | NEW |
---|---|
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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
49 "domain": "Memory", | 49 "domain": "Memory", |
50 "hidden": true, | 50 "hidden": true, |
51 "commands": [ | 51 "commands": [ |
52 { | 52 { |
53 "name": "getDOMCounters", | 53 "name": "getDOMCounters", |
54 "returns": [ | 54 "returns": [ |
55 { "name": "documents", "type": "integer" }, | 55 { "name": "documents", "type": "integer" }, |
56 { "name": "nodes", "type": "integer" }, | 56 { "name": "nodes", "type": "integer" }, |
57 { "name": "jsEventListeners", "type": "integer" } | 57 { "name": "jsEventListeners", "type": "integer" } |
58 ] | 58 ] |
59 }, | |
60 { | |
61 "name": "setNotificationsSuppressed", | |
Sami
2015/09/08 17:43:28
nit: "Notifications" sounds a little too general.
petrcermak
2015/09/14 12:46:03
Done.
| |
62 "description": "Enable/disable suppressing memory pressure notif ications in all processes.", | |
63 "parameters": [ | |
64 { "name": "suppressed", "type": "boolean", "description": "I f true, memory pressure notifications will be suppressed."} | |
65 ], | |
66 "handlers": ["browser"] | |
59 } | 67 } |
60 ] | 68 ] |
61 }, | 69 }, |
62 { | 70 { |
63 "domain": "Page", | 71 "domain": "Page", |
64 "description": "Actions and events related to the inspected page belong to the page domain.", | 72 "description": "Actions and events related to the inspected page belong to the page domain.", |
65 "types": [ | 73 "types": [ |
66 { | 74 { |
67 "id": "ResourceType", | 75 "id": "ResourceType", |
68 "type": "string", | 76 "type": "string", |
(...skipping 5175 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
5244 ], | 5252 ], |
5245 "returns": [ | 5253 "returns": [ |
5246 { "name": "accessibilityNode", "$ref": "AXNode", "descriptio n": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists.", "o ptional": true } | 5254 { "name": "accessibilityNode", "$ref": "AXNode", "descriptio n": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists.", "o ptional": true } |
5247 ], | 5255 ], |
5248 "description": "Fetches the accessibility node for this DOM node , if it exists.", | 5256 "description": "Fetches the accessibility node for this DOM node , if it exists.", |
5249 "hidden": true | 5257 "hidden": true |
5250 } | 5258 } |
5251 ] | 5259 ] |
5252 }] | 5260 }] |
5253 } | 5261 } |
OLD | NEW |