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

Side by Side Diff: chrome/browser/chromeos/file_system_provider/fake_provided_file_system.cc

Issue 210803003: [fsp] Decouple file_service_provider::Service. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed tests. Created 6 years, 8 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright 2014 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 "chrome/browser/chromeos/file_system_provider/fake_provided_file_system .h"
6
7 #include "base/files/file.h"
8 #include "chrome/browser/chromeos/file_system_provider/request_manager.h"
9 #include "chrome/browser/profiles/profile.h"
10
11 namespace chromeos {
12 namespace file_system_provider {
13
14 FakeProvidedFileSystem::FakeProvidedFileSystem() {}
15
16 FakeProvidedFileSystem::FakeProvidedFileSystem(
17 const ProvidedFileSystemInfo& file_system_info)
18 : file_system_info_(file_system_info) {}
19
20 FakeProvidedFileSystem::~FakeProvidedFileSystem() {}
21
22 bool FakeProvidedFileSystem::RequestUnmount(
23 const fileapi::AsyncFileUtil::StatusCallback& callback) {
24 callback.Run(base::File::FILE_OK);
25 return true;
26 }
27
28 const ProvidedFileSystemInfo& FakeProvidedFileSystem::GetFileSystemInfo()
29 const {
30 return file_system_info_;
31 }
32
33 FakeProvidedFileSystemFactory::FakeProvidedFileSystemFactory() {}
34
35 FakeProvidedFileSystemFactory::~FakeProvidedFileSystemFactory() {}
36
37 ProvidedFileSystemInterface* FakeProvidedFileSystemFactory::Create(
38 Profile* profile,
39 RequestManager* request_manager,
40 const ProvidedFileSystemInfo& file_system_info) {
41 DCHECK(profile);
42 DCHECK(request_manager);
43 // TODO(mtomasz): Create a request manager per provided file system, instead
44 // of a profile wide. As a result, this dependency will not be needed in a
hashimoto 2014/04/11 06:01:50 nit: What does "this dependency" mean?
mtomasz 2014/04/11 19:54:12 Dependency of the fake factory on the request mana
45 // fake implementation.
46 return new FakeProvidedFileSystem(file_system_info);
47 }
48
49 } // namespace file_system_provider
50 } // namespace chromeos
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698