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

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

Issue 2989093002: [vm] Don't enable the profiler by default. Enable the profiler at startup with --observe, or later … (Closed)
Patch Set: . Created 3 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 part of mocks; 5 part of mocks;
6 6
7 class VMRefMock implements M.VMRef { 7 class VMRefMock implements M.VMRef {
8 final String name; 8 final String name;
9 final String displayName; 9 final String displayName;
10 const VMRefMock({this.name: 'vm-name', this.displayName: 'vm-display-name'}); 10 const VMRefMock({this.name: 'vm-name', this.displayName: 'vm-display-name'});
(...skipping 11 matching lines...) Expand all
22 final DateTime startTime; 22 final DateTime startTime;
23 final Iterable<M.IsolateRef> isolates; 23 final Iterable<M.IsolateRef> isolates;
24 final int nativeZoneMemoryUsage = 0; 24 final int nativeZoneMemoryUsage = 0;
25 final int heapAllocatedMemoryUsage = 0; 25 final int heapAllocatedMemoryUsage = 0;
26 final int heapAllocationCount = 0; 26 final int heapAllocationCount = 0;
27 27
28 Future<dynamic> invokeRpc(String method, Map params) { 28 Future<dynamic> invokeRpc(String method, Map params) {
29 return null; 29 return null;
30 } 30 }
31 31
32 Future enableProfiler() {
33 return null;
34 }
35
32 const VMMock( 36 const VMMock(
33 {this.name: 'vm-name', 37 {this.name: 'vm-name',
34 this.displayName: 'vm-display-name', 38 this.displayName: 'vm-display-name',
35 this.architectureBits, 39 this.architectureBits,
36 this.targetCPU, 40 this.targetCPU,
37 this.hostCPU, 41 this.hostCPU,
38 this.version, 42 this.version,
39 this.pid: 0, 43 this.pid: 0,
40 this.maxRSS: 0, 44 this.maxRSS: 0,
41 this.startTime, 45 this.startTime,
42 this.isolates: const []}); 46 this.isolates: const []});
43 } 47 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698