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 #include "base/logging.h" |
| 8 |
| 9 namespace arc { |
| 10 |
| 11 FakeArcFileSystemOperationRunner::FakeArcFileSystemOperationRunner( |
| 12 ArcBridgeService* bridge_service) |
| 13 : ArcFileSystemOperationRunner(bridge_service) {} |
| 14 |
| 15 FakeArcFileSystemOperationRunner::~FakeArcFileSystemOperationRunner() = default; |
| 16 |
| 17 void FakeArcFileSystemOperationRunner::GetFileSize( |
| 18 const GURL& url, |
| 19 const GetFileSizeCallback& callback) { |
| 20 NOTREACHED(); |
| 21 } |
| 22 |
| 23 void FakeArcFileSystemOperationRunner::OpenFileToRead( |
| 24 const GURL& url, |
| 25 const OpenFileToReadCallback& callback) { |
| 26 NOTREACHED(); |
| 27 } |
| 28 |
| 29 void FakeArcFileSystemOperationRunner::GetDocument( |
| 30 const std::string& authority, |
| 31 const std::string& document_id, |
| 32 const GetDocumentCallback& callback) { |
| 33 NOTREACHED(); |
| 34 } |
| 35 |
| 36 void FakeArcFileSystemOperationRunner::GetChildDocuments( |
| 37 const std::string& authority, |
| 38 const std::string& parent_document_id, |
| 39 const GetChildDocumentsCallback& callback) { |
| 40 NOTREACHED(); |
| 41 } |
| 42 |
| 43 } // namespace arc |
OLD | NEW |