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

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

Powered by Google App Engine
This is Rietveld 408576698