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

Unified Diff: third_party/WebKit/Source/devtools/protocol.json

Issue 1911643002: Add configurable limit to allocations in heap profiler. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressing comments Created 4 years, 8 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
Index: third_party/WebKit/Source/devtools/protocol.json
diff --git a/third_party/WebKit/Source/devtools/protocol.json b/third_party/WebKit/Source/devtools/protocol.json
index 00002f8f276f9c4564031297401a94e010aea9a2..1462d7289c38f7281cb57814684f47d0acd37585 100644
--- a/third_party/WebKit/Source/devtools/protocol.json
+++ b/third_party/WebKit/Source/devtools/protocol.json
@@ -4697,7 +4697,8 @@
"id": "MemoryDumpConfig",
"type": "object",
"properties": [
- { "name": "triggers", "type": "array", "items": { "$ref": "MemoryDumpTrigger" }, "optional": false, "description": "Memory dump trigger configuration." }
+ { "name": "triggers", "type": "array", "items": { "$ref": "MemoryDumpTrigger" }, "optional": false, "description": "Memory dump trigger configuration." },
+ { "name": "min_allocation_size_bytes", "type": "number", "optional": true, "description": "Provides a cut off value, if a trace allocates less than that, it is discarded." }
Primiano Tucci (use gerrit) 2016/04/21 16:53:22 I would probably not bother exposing this to the d
caseq 2016/04/26 01:15:07 Well, it gets exposed automatically since we're re
],
"description": "Configuration for memory dump triggers. Used only when \"memory-infra\" category is enabled."
},

Powered by Google App Engine
This is Rietveld 408576698