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

Side by Side Diff: runtime/observatory/tests/observatory_ui/mocks/repositories/target.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 class TargetChangeEventMock implements M.TargetChangeEvent { 7 class TargetChangeEventMock implements M.TargetChangeEvent {
8 final TargetRepositoryMock repository; 8 final TargetRepositoryMock repository;
9 const TargetChangeEventMock({this.repository}); 9 const TargetChangeEventMock({this.repository});
10 } 10 }
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
57 } 57 }
58 58
59 void triggerChangeEvent() { 59 void triggerChangeEvent() {
60 _onChange.add(new TargetChangeEventMock(repository: this)); 60 _onChange.add(new TargetChangeEventMock(repository: this));
61 } 61 }
62 62
63 M.Target find(String networkAddress) { 63 M.Target find(String networkAddress) {
64 return null; 64 return null;
65 } 65 }
66 66
67 TargetRepositoryMock({M.Target current, Iterable<M.Target> list : const [], 67 TargetRepositoryMock(
68 {M.Target current,
69 Iterable<M.Target> list: const [],
68 TargetRepositoryMockStringCallback add, 70 TargetRepositoryMockStringCallback add,
69 TargetRepositoryMockTargetCallback setCurrent, 71 TargetRepositoryMockTargetCallback setCurrent,
70 TargetRepositoryMockTargetCallback delete}) 72 TargetRepositoryMockTargetCallback delete})
71 : _current = current, 73 : _current = current,
72 _list = list, 74 _list = list,
73 _add = add, 75 _add = add,
74 _setCurrent = setCurrent, 76 _setCurrent = setCurrent,
75 _delete = delete; 77 _delete = delete;
76 } 78 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698