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

Side by Side 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: Whitespace change Created 4 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 unified diff | Download patch
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 4700 matching lines...) Expand 10 before | Expand all | Expand 10 after
4711 { 4711 {
4712 "name": "clearDeviceOrientationOverride", 4712 "name": "clearDeviceOrientationOverride",
4713 "description": "Clears the overridden Device Orientation." 4713 "description": "Clears the overridden Device Orientation."
4714 } 4714 }
4715 ] 4715 ]
4716 }, 4716 },
4717 { 4717 {
4718 "domain": "Tracing", 4718 "domain": "Tracing",
4719 "types": [ 4719 "types": [
4720 { 4720 {
4721 "id": "MemoryDumpTrigger",
4722 "type": "object",
4723 "properties": [
4724 { "name": "mode", "type": "string", "enum": ["light", "detai led"], "description": "Level of detail of the triggered memory dumps." },
4725 { "name": "periodicIntervalMs", "type": "integer", "descript ion": "Length of the periodic intervals between the triggered memory dumps." }
4726 ],
4727 "description": "Memory dump trigger configuration."
4728 },
4729 {
4730 "id": "MemoryDumpConfig", 4721 "id": "MemoryDumpConfig",
4731 "type": "object", 4722 "type": "object",
4732 "properties": [ 4723 "description": "Configuration for memory dump. Used only when \" memory-infra\" category is enabled."
4733 { "name": "triggers", "type": "array", "items": { "$ref": "M emoryDumpTrigger" }, "optional": false, "description": "Memory dump trigger conf iguration." }
4734 ],
4735 "description": "Configuration for memory dump triggers. Used onl y when \"memory-infra\" category is enabled."
4736 }, 4724 },
4737 { 4725 {
4738 "id": "TraceConfig", 4726 "id": "TraceConfig",
4739 "type": "object", 4727 "type": "object",
4740 "properties": [ 4728 "properties": [
4741 { "name": "recordMode", "type": "string", "optional": true, "enum": ["recordUntilFull", "recordContinuously", "recordAsMuchAsPossible", "ech oToConsole"], "description": "Controls how the trace buffer stores data." }, 4729 { "name": "recordMode", "type": "string", "optional": true, "enum": ["recordUntilFull", "recordContinuously", "recordAsMuchAsPossible", "ech oToConsole"], "description": "Controls how the trace buffer stores data." },
4742 { "name": "enableSampling", "type": "boolean", "optional": t rue, "description": "Turns on JavaScript stack sampling." }, 4730 { "name": "enableSampling", "type": "boolean", "optional": t rue, "description": "Turns on JavaScript stack sampling." },
4743 { "name": "enableSystrace", "type": "boolean", "optional": t rue, "description": "Turns on system tracing." }, 4731 { "name": "enableSystrace", "type": "boolean", "optional": t rue, "description": "Turns on system tracing." },
4744 { "name": "enableArgumentFilter", "type": "boolean", "option al": true, "description": "Turns on argument filter." }, 4732 { "name": "enableArgumentFilter", "type": "boolean", "option al": true, "description": "Turns on argument filter." },
4745 { "name": "includedCategories", "type": "array", "items": { "type": "string" }, "optional": true, "description": "Included category filters. " }, 4733 { "name": "includedCategories", "type": "array", "items": { "type": "string" }, "optional": true, "description": "Included category filters. " },
(...skipping 364 matching lines...) Expand 10 before | Expand all | Expand 10 after
5110 ], 5098 ],
5111 "returns": [ 5099 "returns": [
5112 { "name": "accessibilityNode", "$ref": "AXNode", "descriptio n": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists.", "o ptional": true } 5100 { "name": "accessibilityNode", "$ref": "AXNode", "descriptio n": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists.", "o ptional": true }
5113 ], 5101 ],
5114 "description": "Fetches the accessibility node for this DOM node , if it exists.", 5102 "description": "Fetches the accessibility node for this DOM node , if it exists.",
5115 "hidden": true 5103 "hidden": true
5116 } 5104 }
5117 ] 5105 ]
5118 }] 5106 }]
5119 } 5107 }
OLDNEW
« no previous file with comments | « base/trace_event/trace_config_unittest.cc ('k') | third_party/WebKit/Source/platform/web_process_memory_dump_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698