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

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

Issue 2294073003: Converted Observatory class-view element (Closed)
Patch Set: Addressed comments 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/object.dart
diff --git a/runtime/observatory/lib/src/models/objects/object.dart b/runtime/observatory/lib/src/models/objects/object.dart
index 7679c5d58c0b3b0e68195d0832fa33c7ad0fd476..044072fde44dc4dd83c22896e987a516119984a9 100644
--- a/runtime/observatory/lib/src/models/objects/object.dart
+++ b/runtime/observatory/lib/src/models/objects/object.dart
@@ -28,4 +28,11 @@ abstract class Object implements ObjectRef {
/// VM implementation, this occurs for small integers, which are
/// stored entirely within their object pointers.
int get size;
+
+ String get vmName;
+}
+
+abstract class RetainingObject {
+ int get retainedSize;
+ ObjectRef get object;
}

Powered by Google App Engine
This is Rietveld 408576698