| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 import 'dart:async'; | 5 import 'dart:async'; |
| 6 import 'dart:core'; | 6 import 'dart:core'; |
| 7 import 'package:mojo/public/dart/core.dart'; | 7 import 'package:mojo/public/dart/core.dart'; |
| 8 import 'package:mojo/services/files/public/interfaces/file.mojom.dart' as files; | 8 import 'package:mojo/services/files/public/interfaces/file.mojom.dart' as files; |
| 9 import 'package:mojo/services/files/public/interfaces/types.mojom.dart' as files
; | 9 import 'package:mojo/services/files/public/interfaces/types.mojom.dart' as files
; |
| 10 | 10 |
| (...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 115 // TODO(vtl) | 115 // TODO(vtl) |
| 116 return responseFactory(files.Error_UNIMPLEMENTED); | 116 return responseFactory(files.Error_UNIMPLEMENTED); |
| 117 } | 117 } |
| 118 | 118 |
| 119 @override | 119 @override |
| 120 Future asBuffer(Function responseFactory) async { | 120 Future asBuffer(Function responseFactory) async { |
| 121 // TODO(vtl) | 121 // TODO(vtl) |
| 122 return responseFactory(files.Error_UNIMPLEMENTED, null); | 122 return responseFactory(files.Error_UNIMPLEMENTED, null); |
| 123 } | 123 } |
| 124 } | 124 } |
| OLD | NEW |