OLD | NEW |
(Empty) | |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #include "components/arc/file_system/test/fake_arc_file_system_operation_runner.
h" |
| 6 |
| 7 namespace arc { |
| 8 |
| 9 FakeArcFileSystemOperationRunner::FakeArcFileSystemOperationRunner( |
| 10 ArcBridgeService* bridge_service) |
| 11 : ArcFileSystemOperationRunner(bridge_service) {} |
| 12 |
| 13 FakeArcFileSystemOperationRunner::~FakeArcFileSystemOperationRunner() = default; |
| 14 |
| 15 void FakeArcFileSystemOperationRunner::GetFileSize( |
| 16 const std::string& url, |
| 17 const GetFileSizeCallback& callback) {} |
| 18 |
| 19 void FakeArcFileSystemOperationRunner::OpenFileToRead( |
| 20 const std::string& url, |
| 21 const OpenFileToReadCallback& callback) {} |
| 22 |
| 23 void FakeArcFileSystemOperationRunner::GetDocument( |
| 24 const std::string& authority, |
| 25 const std::string& document_id, |
| 26 const GetDocumentCallback& callback) {} |
| 27 |
| 28 void FakeArcFileSystemOperationRunner::GetChildDocuments( |
| 29 const std::string& authority, |
| 30 const std::string& parent_document_id, |
| 31 const GetChildDocumentsCallback& callback) {} |
| 32 |
| 33 } // namespace arc |
OLD | NEW |