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

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

Issue 2751423005: Run dartfmt on all files under runtime. (Closed)
Patch Set: Run dartfmt on all files under runtime. 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/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 2cfc9f07856c1aa6e984299dd4dba75ee0cc36fa..0d604730a54c8e7dd21fcb6c7b09ffee74a1c3db 100644
--- a/runtime/observatory/tests/observatory_ui/mocks/objects/vm.dart
+++ b/runtime/observatory/tests/observatory_ui/mocks/objects/vm.dart
@@ -22,7 +22,15 @@ class VMMock implements M.VM {
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: 0, this.maxRSS: 0, this.startTime, this.isolates : const []});
+ const VMMock(
+ {this.name: 'vm-name',
+ this.displayName: 'vm-display-name',
+ this.architectureBits,
+ this.targetCPU,
+ this.hostCPU,
+ this.version,
+ this.pid: 0,
+ this.maxRSS: 0,
+ this.startTime,
+ this.isolates: const []});
}

Powered by Google App Engine
This is Rietveld 408576698