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

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

Issue 1311343007: Add DevTools method for cross-process memory notification suppressing (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Remove asynchronous callback Created 5 years, 3 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 | « no previous file | 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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
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": "setPressureNotificationsSuppressed",
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 5177 matching lines...) Expand 10 before | Expand all | Expand 10 after
5246 ], 5254 ],
5247 "returns": [ 5255 "returns": [
5248 { "name": "accessibilityNode", "$ref": "AXNode", "descriptio n": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists.", "o ptional": true } 5256 { "name": "accessibilityNode", "$ref": "AXNode", "descriptio n": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists.", "o ptional": true }
5249 ], 5257 ],
5250 "description": "Fetches the accessibility node for this DOM node , if it exists.", 5258 "description": "Fetches the accessibility node for this DOM node , if it exists.",
5251 "hidden": true 5259 "hidden": true
5252 } 5260 }
5253 ] 5261 ]
5254 }] 5262 }]
5255 } 5263 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698