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

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: Review ready. 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 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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698