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

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

Issue 2304463002: Converted Observatory vm-view && isolate-view elements (Closed)
Patch Set: Fixed typo Created 4 years, 3 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/vm.dart
diff --git a/runtime/observatory/tests/observatory_ui/mocks/objects/vm.dart b/runtime/observatory/tests/observatory_ui/mocks/objects/vm.dart
index 2740b831bdbb98a4f886e046061e8aad0c22709f..2cfc9f07856c1aa6e984299dd4dba75ee0cc36fa 100644
--- a/runtime/observatory/tests/observatory_ui/mocks/objects/vm.dart
+++ b/runtime/observatory/tests/observatory_ui/mocks/objects/vm.dart
@@ -18,10 +18,11 @@ class VMMock implements M.VM {
final String hostCPU;
final String version;
final int pid;
+ final int maxRSS;
final DateTime startTime;
final Iterable<M.IsolateRef> isolates;
const VMMock({this.name: 'vm-name', this.displayName: 'vm-display-name',
this.architectureBits, this.targetCPU, this.hostCPU, this.version,
- this.pid, this.startTime, this.isolates : const []});
+ this.pid: 0, this.maxRSS: 0, this.startTime, this.isolates : const []});
}

Powered by Google App Engine
This is Rietveld 408576698