| Index: runtime/observatory/tests/observatory_ui/mocks/repositories/retaining_path.dart
|
| diff --git a/runtime/observatory/tests/observatory_ui/mocks/repositories/retaining_path.dart b/runtime/observatory/tests/observatory_ui/mocks/repositories/retaining_path.dart
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..28bd4b3ef8692842ff336f10054fe2f831ca690d
|
| --- /dev/null
|
| +++ b/runtime/observatory/tests/observatory_ui/mocks/repositories/retaining_path.dart
|
| @@ -0,0 +1,22 @@
|
| +// 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.RetainingPath>
|
| + RetainingPathRepositoryMockGetter(M.IsolateRef i, String id);
|
| +
|
| +class RetainingPathRepositoryMock implements M.RetainingPathRepository {
|
| + final RetainingPathRepositoryMockGetter _getter;
|
| +
|
| + Future<M.RetainingPath> get(M.IsolateRef i, String id) {
|
| + if (_getter != null) {
|
| + return _getter(i, id);
|
| + }
|
| + return new Future.value(new RetainingPathMock());
|
| + }
|
| +
|
| + RetainingPathRepositoryMock({RetainingPathRepositoryMockGetter getter})
|
| + : _getter = getter;
|
| +}
|
|
|