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

Side by Side Diff: runtime/observatory/tests/observatory_ui/mocks/repositories/ports.dart

Issue 2767533002: Revert "Fix observatory tests broken by running dartfmt." (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 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 typedef Future<M.Ports> PortsRepositoryMockGetter(M.IsolateRef i); 7 typedef Future<M.Ports> PortsRepositoryMockGetter(M.IsolateRef i);
8 8
9 class PortsRepositoryMock implements M.PortsRepository { 9 class PortsRepositoryMock implements M.PortsRepository {
10 final PortsRepositoryMockGetter _getter; 10 final PortsRepositoryMockGetter _getter;
11 11
12 Future<M.Ports> get(M.IsolateRef i) { 12 Future<M.Ports> get(M.IsolateRef i) {
13 if (_getter != null) { 13 if (_getter != null) {
14 return _getter(i); 14 return _getter(i);
15 } 15 }
16 return new Future.value(new PortsMock()); 16 return new Future.value(new PortsMock());
17 } 17 }
18 18
19 PortsRepositoryMock({PortsRepositoryMockGetter getter}) : _getter = getter; 19 PortsRepositoryMock({PortsRepositoryMockGetter getter})
20 : _getter = getter;
20 } 21 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698