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

Side by Side Diff: runtime/observatory/tests/observatory_ui/mocks/repositories/class.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.Class> ClassRepositoryMockObjectCallback(M.Isolate isolate); 7 typedef Future<M.Class> ClassRepositoryMockObjectCallback(M.Isolate isolate);
8 typedef Future<M.Class> ClassRepositoryMockGetterCallback( 8 typedef Future<M.Class>
9 M.Isolate isolate, String id); 9 ClassRepositoryMockGetterCallback(M.Isolate isolate, String id);
10 10
11 class ClassRepositoryMock implements M.ClassRepository { 11 class ClassRepositoryMock implements M.ClassRepository {
12 final ClassRepositoryMockObjectCallback _object; 12 final ClassRepositoryMockObjectCallback _object;
13 final ClassRepositoryMockGetterCallback _get; 13 final ClassRepositoryMockGetterCallback _get;
14 14
15 ClassRepositoryMock( 15 ClassRepositoryMock({ClassRepositoryMockObjectCallback object,
16 {ClassRepositoryMockObjectCallback object, 16 ClassRepositoryMockGetterCallback getter})
17 ClassRepositoryMockGetterCallback getter}) 17 : _object = object,
18 : _object = object, 18 _get = getter;
19 _get = getter;
20 19
21 Future<M.Class> getObject(M.IsolateRef i) { 20 Future<M.Class> getObject(M.IsolateRef i){
22 if (_object != null) { 21 if (_object != null) {
23 return _object(i); 22 return _object(i);
24 } 23 }
25 return new Future.value(null); 24 return new Future.value(null);
26 } 25 }
27 26
28 Future<M.Class> get(M.IsolateRef i, String id) { 27 Future<M.Class> get(M.IsolateRef i, String id){
29 if (_get != null) { 28 if (_get != null) {
30 return _get(i, id); 29 return _get(i, id);
31 } 30 }
32 return new Future.value(null); 31 return new Future.value(null);
33 } 32 }
34 } 33 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698