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

Side by Side Diff: chrome/browser/chromeos/file_system_provider/fileapi/backend_delegate.h

Issue 442383002: Move storage-related files from webkit/ to new top-level directory storage/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 6 years, 4 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
1 // Copyright 2014 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_BROWSER_CHROMEOS_FILE_SYSTEM_PROVIDER_FILEAPI_BACKEND_DELEGATE_H_ 5 #ifndef CHROME_BROWSER_CHROMEOS_FILE_SYSTEM_PROVIDER_FILEAPI_BACKEND_DELEGATE_H_
6 #define CHROME_BROWSER_CHROMEOS_FILE_SYSTEM_PROVIDER_FILEAPI_BACKEND_DELEGATE_H_ 6 #define CHROME_BROWSER_CHROMEOS_FILE_SYSTEM_PROVIDER_FILEAPI_BACKEND_DELEGATE_H_
7 7
8 #include "base/basictypes.h" 8 #include "base/basictypes.h"
9 #include "base/memory/scoped_ptr.h" 9 #include "base/memory/scoped_ptr.h"
10 #include "chrome/browser/chromeos/fileapi/file_system_backend_delegate.h" 10 #include "chrome/browser/chromeos/fileapi/file_system_backend_delegate.h"
11 11
12 namespace fileapi { 12 namespace storage {
13 class AsyncFileUtil; 13 class AsyncFileUtil;
14 } // namespace fileapi 14 } // namespace storage
15 15
16 namespace chromeos { 16 namespace chromeos {
17 namespace file_system_provider { 17 namespace file_system_provider {
18 18
19 // Delegate implementation of the some methods in chromeos::FileSystemBackend 19 // Delegate implementation of the some methods in chromeos::FileSystemBackend
20 // for provided file systems. 20 // for provided file systems.
21 class BackendDelegate : public chromeos::FileSystemBackendDelegate { 21 class BackendDelegate : public chromeos::FileSystemBackendDelegate {
22 public: 22 public:
23 BackendDelegate(); 23 BackendDelegate();
24 virtual ~BackendDelegate(); 24 virtual ~BackendDelegate();
25 25
26 // FileSystemBackend::Delegate overrides. 26 // FileSystemBackend::Delegate overrides.
27 virtual fileapi::AsyncFileUtil* GetAsyncFileUtil(fileapi::FileSystemType type) 27 virtual storage::AsyncFileUtil* GetAsyncFileUtil(
28 OVERRIDE; 28 storage::FileSystemType type) OVERRIDE;
29 virtual scoped_ptr<webkit_blob::FileStreamReader> CreateFileStreamReader( 29 virtual scoped_ptr<storage::FileStreamReader> CreateFileStreamReader(
30 const fileapi::FileSystemURL& url, 30 const storage::FileSystemURL& url,
31 int64 offset, 31 int64 offset,
32 const base::Time& expected_modification_time, 32 const base::Time& expected_modification_time,
33 fileapi::FileSystemContext* context) OVERRIDE; 33 storage::FileSystemContext* context) OVERRIDE;
34 virtual scoped_ptr<fileapi::FileStreamWriter> CreateFileStreamWriter( 34 virtual scoped_ptr<storage::FileStreamWriter> CreateFileStreamWriter(
35 const fileapi::FileSystemURL& url, 35 const storage::FileSystemURL& url,
36 int64 offset, 36 int64 offset,
37 fileapi::FileSystemContext* context) OVERRIDE; 37 storage::FileSystemContext* context) OVERRIDE;
38 38
39 private: 39 private:
40 scoped_ptr<fileapi::AsyncFileUtil> async_file_util_; 40 scoped_ptr<storage::AsyncFileUtil> async_file_util_;
41 41
42 DISALLOW_COPY_AND_ASSIGN(BackendDelegate); 42 DISALLOW_COPY_AND_ASSIGN(BackendDelegate);
43 }; 43 };
44 44
45 } // namespace file_system_provider 45 } // namespace file_system_provider
46 } // namespace chromeos 46 } // namespace chromeos
47 47
48 #endif // CHROME_BROWSER_CHROMEOS_FILE_SYSTEM_PROVIDER_FILEAPI_BACKEND_DELEGATE _H_ 48 #endif // CHROME_BROWSER_CHROMEOS_FILE_SYSTEM_PROVIDER_FILEAPI_BACKEND_DELEGATE _H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698