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

Unified Diff: Source/devtools/protocol.json

Issue 1235393005: Add Tracing.requestMemoryDump method to DevTools API (protocol) (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 5 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 | « no previous file | 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 b322e651e2e64b719161519e39829f14cc15c8c2..47481fdeae327ea141957716b10fb0732f38cb0c 100644
--- a/Source/devtools/protocol.json
+++ b/Source/devtools/protocol.json
@@ -4713,6 +4713,16 @@
{ "name": "categories", "type": "array", "items": { "type": "string" }, "description": "A list of supported tracing categories." }
],
"handlers": ["browser"]
+ },
+ {
+ "name": "requestMemoryDump",
+ "async": true,
+ "description": "Request a global memory dump.",
pfeldman 2015/07/20 18:44:07 Does tracing need to be started to use this one?
petrcermak 2015/07/21 08:03:59 Yes, it does. The request will fail if it hasn't b
+ "returns": [
+ { "name": "dumpGuid", "type": "string", "description": "GUID of the resulting global memory dump." },
+ { "name": "success", "type": "boolean", "description": "True iff the global memory dump succeeded." }
+ ],
+ "handlers": ["browser"]
}
],
"events": [
« 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