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

Side by Side Diff: components/arc/file_system/test/fake_arc_file_system_operation_runner.cc

Issue 2637163002: Defer ARC file system operations while ARC is booting. (Closed)
Patch Set: Addressed hidehiko's comments. Created 3 years, 11 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 unified diff | Download patch
OLDNEW
(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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698