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

Unified Diff: runtime/observatory/tests/observatory_ui/mocks/repositories/megamorphiccache.dart

Issue 2279203003: Converted Observatory megamorphiccache-view element (Closed)
Patch Set: Removed double Copyright notice Created 4 years, 4 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
« no previous file with comments | « runtime/observatory/tests/observatory_ui/mocks/objects/megamorphiccache.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
new file mode 100644
index 0000000000000000000000000000000000000000..340bad3fde4a13f273743c3c94b496e6307b74b0
--- /dev/null
+++ b/runtime/observatory/tests/observatory_ui/mocks/repositories/megamorphiccache.dart
@@ -0,0 +1,23 @@
+// Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file
+// for details. All rights reserved. Use of this source code is governed by a
+// BSD-style license that can be found in the LICENSE file.
+
+part of mocks;
+
+typedef Future<M.MegamorphicCache>
+ MegamorphicCacheRepositoryMockCallback(M.IsolateRef isolate, String id);
+
+class MegamorphicCacheRepositoryMock implements M.MegamorphicCacheRepository {
+ final MegamorphicCacheRepositoryMockCallback _get;
+
+ MegamorphicCacheRepositoryMock(
+ {MegamorphicCacheRepositoryMockCallback getter})
+ : _get = getter;
+
+ Future<M.MegamorphicCache> get(M.IsolateRef isolate, String id, {int count}){
+ if (_get != null) {
+ return _get(isolate, id);
+ }
+ return new Future.value(null);
+ }
+}
« no previous file with comments | « runtime/observatory/tests/observatory_ui/mocks/objects/megamorphiccache.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698