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

Unified Diff: runtime/observatory/tests/observatory_ui/mocks/objects/heap_snapshot.dart

Issue 2783933002: Fix many warnings/errors when building Observatory (Closed)
Patch Set: Created 3 years, 9 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/tests/observatory_ui/mocks/objects/heap_snapshot.dart
diff --git a/runtime/observatory/tests/observatory_ui/mocks/objects/heap_snapshot.dart b/runtime/observatory/tests/observatory_ui/mocks/objects/heap_snapshot.dart
index d0b268d6a5300f567e47c108874cdd220258715c..38cde90adebdcb408c53da59eb6bb85554927382 100644
--- a/runtime/observatory/tests/observatory_ui/mocks/objects/heap_snapshot.dart
+++ b/runtime/observatory/tests/observatory_ui/mocks/objects/heap_snapshot.dart
@@ -10,6 +10,7 @@ class HeapSnapshotMock implements M.HeapSnapshot {
final int references;
final int size;
final M.HeapSnapshotDominatorNode dominatorTree;
+ final M.HeapSnapshotMergedDominatorNode mergedDominatorTree = null;
final Iterable<M.HeapSnapshotClassReferences> classReferences;
const HeapSnapshotMock(
@@ -24,6 +25,7 @@ class HeapSnapshotMock implements M.HeapSnapshot {
class HeapSnapshotDominatorNodeMock implements M.HeapSnapshotDominatorNode {
final int shallowSize;
final int retainedSize;
+ final bool isStack = false;
final Future<M.ObjectRef> object;
final Iterable<M.HeapSnapshotDominatorNode> children;

Powered by Google App Engine
This is Rietveld 408576698