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

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

Issue 3003903002: Hide internal classes from Memory Profile (Closed)
Patch Set: Address CL comments Created 3 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/allocation_profile.dart
diff --git a/runtime/observatory/lib/src/models/objects/allocation_profile.dart b/runtime/observatory/lib/src/models/objects/allocation_profile.dart
index 6a60a624a09697c6763b7c90dc072f9406b7e21e..4f113a69dad5ead6deff55cdf4480d2a0dc28957 100644
--- a/runtime/observatory/lib/src/models/objects/allocation_profile.dart
+++ b/runtime/observatory/lib/src/models/objects/allocation_profile.dart
@@ -13,7 +13,11 @@ abstract class AllocationProfile {
}
abstract class ClassHeapStats {
+ /// [Optional] at least one between clazz and displayName should be non null
ClassRef get clazz;
+
+ /// [Optional] at least one between clazz and displayName should be non null
+ String get displayName;
Allocations get newSpace;
Allocations get oldSpace;
int get promotedInstances;

Powered by Google App Engine
This is Rietveld 408576698