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

Unified Diff: Source/devtools/protocol.json

Issue 121223003: DevTools: Move usedHeapSize from TimelineEvent into counters. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years 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 | « Source/devtools/front_end/TimelinePresentationModel.js ('k') | 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 422ee2f0365d9c0598e68e87d775f92ae2b44c2d..10f3725c6f41a70733ee68ab2c3503100347e9ea 100644
--- a/Source/devtools/protocol.json
+++ b/Source/devtools/protocol.json
@@ -2858,7 +2858,8 @@
"properties": [
{ "name": "documents", "type": "integer", "optional": true },
{ "name": "nodes", "type": "integer", "optional": true },
- { "name": "jsEventListeners", "type": "integer", "optional": true }
+ { "name": "jsEventListeners", "type": "integer", "optional": true },
+ { "name": "jsHeapSizeUsed", "type": "number", "optional": true, "description": "Currently used size of JS heap." }
],
"description": "Current values of counters.",
"hidden": true
@@ -2876,7 +2877,6 @@
{ "name": "counters", "$ref": "Counters", "optional": true, "hidden": true, "description": "Current values of counters." },
{ "name": "stackTrace", "$ref": "Console.StackTrace", "optional": true, "hidden": true, "description": "Stack trace." },
{ "name": "frameId", "type": "string", "optional": true, "hidden": true, "description": "Unique identifier of the frame within the page that the event relates to." },
- { "name": "usedHeapSize", "type": "integer", "optional": true, "hidden": true, "description": "Current size of JS heap." },
{ "name": "usedHeapSizeDelta", "type": "integer", "optional": true, "hidden": true, "description": "JS heap size change." }
],
"description": "Timeline record contains information about the recorded activity."
« no previous file with comments | « Source/devtools/front_end/TimelinePresentationModel.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698