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

Unified Diff: runtime/observatory/tests/observatory_ui/mocks/repositories/megamorphiccache.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 side-by-side diff with in-line comments
Download patch
Index: runtime/observatory/tests/observatory_ui/mocks/repositories/megamorphiccache.dart
diff --git a/runtime/observatory/tests/observatory_ui/mocks/repositories/megamorphiccache.dart b/runtime/observatory/tests/observatory_ui/mocks/repositories/megamorphiccache.dart
index aabdf90ae6fb8eaa81707c0cfeebc648728898b1..340bad3fde4a13f273743c3c94b496e6307b74b0 100644
--- a/runtime/observatory/tests/observatory_ui/mocks/repositories/megamorphiccache.dart
+++ b/runtime/observatory/tests/observatory_ui/mocks/repositories/megamorphiccache.dart
@@ -4,17 +4,17 @@
part of mocks;
-typedef Future<M.MegamorphicCache> MegamorphicCacheRepositoryMockCallback(
- M.IsolateRef isolate, String id);
+typedef Future<M.MegamorphicCache>
+ MegamorphicCacheRepositoryMockCallback(M.IsolateRef isolate, String id);
class MegamorphicCacheRepositoryMock implements M.MegamorphicCacheRepository {
final MegamorphicCacheRepositoryMockCallback _get;
MegamorphicCacheRepositoryMock(
- {MegamorphicCacheRepositoryMockCallback getter})
- : _get = getter;
+ {MegamorphicCacheRepositoryMockCallback getter})
+ : _get = getter;
- Future<M.MegamorphicCache> get(M.IsolateRef isolate, String id, {int count}) {
+ Future<M.MegamorphicCache> get(M.IsolateRef isolate, String id, {int count}){
if (_get != null) {
return _get(isolate, id);
}

Powered by Google App Engine
This is Rietveld 408576698