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

Unified Diff: runtime/observatory/lib/src/models/repositories/heap_snapshot.dart

Issue 2502283003: Add a version of heap snapshots that use only fields and stack frames as roots and only include ins… (Closed)
Patch Set: . Created 4 years, 1 month 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/repositories/heap_snapshot.dart
diff --git a/runtime/observatory/lib/src/models/repositories/heap_snapshot.dart b/runtime/observatory/lib/src/models/repositories/heap_snapshot.dart
index da71fe97e60215f53a73069628d3292b0895b466..9e87e642ec4f908578b3c9feb2a6bb83dd5227a2 100644
--- a/runtime/observatory/lib/src/models/repositories/heap_snapshot.dart
+++ b/runtime/observatory/lib/src/models/repositories/heap_snapshot.dart
@@ -30,6 +30,8 @@ abstract class HeapSnapshotLoadingProgress {
}
abstract class HeapSnapshotRepository {
- Stream<HeapSnapshotLoadingProgressEvent> get(IsolateRef isolate,
- {bool gc: false});
+ Stream<HeapSnapshotLoadingProgressEvent> get(
+ IsolateRef isolate,
+ {HeapSnapshotRoots roots: HeapSnapshotRoots.vm,
+ bool gc: false});
}

Powered by Google App Engine
This is Rietveld 408576698