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

Unified Diff: runtime/observatory/lib/src/models/objects/heap_space.dart

Issue 2255613002: Converted Observatory heap-profile element (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Better sorting tests Created 4 years, 4 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: runtime/observatory/lib/src/models/objects/heap_space.dart
diff --git a/runtime/observatory/lib/src/models/objects/heap_space.dart b/runtime/observatory/lib/src/models/objects/heap_space.dart
index 29c55ce8496db99ab8904b8bd02a5335224bd46b..cf62fbff99084f2b76761ba4f74815c46a538ac2 100644
--- a/runtime/observatory/lib/src/models/objects/heap_space.dart
+++ b/runtime/observatory/lib/src/models/objects/heap_space.dart
@@ -7,4 +7,9 @@ part of models;
abstract class HeapSpace {
int get used;
int get capacity;
+ int get collections;
+ int get external;
+ Duration get avgCollectionTime;
+ Duration get totalCollectionTime;
+ Duration get avgCollectionPeriod;
}

Powered by Google App Engine
This is Rietveld 408576698