OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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_FILEAPI_FILE_SYSTEM_BACKEND_DELEGATE_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_FILEAPI_FILE_SYSTEM_BACKEND_DELEGATE_H_ |
6 #define CHROME_BROWSER_CHROMEOS_FILEAPI_FILE_SYSTEM_BACKEND_DELEGATE_H_ | 6 #define CHROME_BROWSER_CHROMEOS_FILEAPI_FILE_SYSTEM_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 "webkit/common/fileapi/file_system_types.h" | 10 #include "webkit/common/fileapi/file_system_types.h" |
11 | 11 |
12 namespace base { | 12 namespace base { |
13 class Time; | 13 class Time; |
14 } // namespace base | 14 } // namespace base |
15 | 15 |
16 namespace fileapi { | 16 namespace fileapi { |
17 class AsyncFileUtil; | 17 class AsyncFileUtil; |
| 18 class FileStreamWriter; |
18 class FileSystemContext; | 19 class FileSystemContext; |
19 class FileSystemURL; | 20 class FileSystemURL; |
20 class FileStreamWriter; | 21 class WatcherManager; |
21 } // namespace fileapi | 22 } // namespace fileapi |
22 | 23 |
23 namespace webkit_blob { | 24 namespace webkit_blob { |
24 class FileStreamReader; | 25 class FileStreamReader; |
25 } // namespace webkit_blob | 26 } // namespace webkit_blob |
26 | 27 |
27 namespace chromeos { | 28 namespace chromeos { |
28 | 29 |
29 // This is delegate interface to inject the implementation of the some methods | 30 // This is delegate interface to inject the implementation of the some methods |
30 // of FileSystemBackend. The main goal is to inject Drive File System. | 31 // of FileSystemBackend. |
31 class FileSystemBackendDelegate { | 32 class FileSystemBackendDelegate { |
32 public: | 33 public: |
33 virtual ~FileSystemBackendDelegate() {} | 34 virtual ~FileSystemBackendDelegate() {} |
34 | 35 |
35 // Called from FileSystemBackend::GetAsyncFileUtil(). | 36 // Called from FileSystemBackend::GetAsyncFileUtil(). |
36 virtual fileapi::AsyncFileUtil* GetAsyncFileUtil( | 37 virtual fileapi::AsyncFileUtil* GetAsyncFileUtil( |
37 fileapi::FileSystemType type) = 0; | 38 fileapi::FileSystemType type) = 0; |
38 | 39 |
39 // Called from FileSystemBackend::CreateFileStreamReader(). | 40 // Called from FileSystemBackend::CreateFileStreamReader(). |
40 virtual scoped_ptr<webkit_blob::FileStreamReader> CreateFileStreamReader( | 41 virtual scoped_ptr<webkit_blob::FileStreamReader> CreateFileStreamReader( |
41 const fileapi::FileSystemURL& url, | 42 const fileapi::FileSystemURL& url, |
42 int64 offset, | 43 int64 offset, |
43 const base::Time& expected_modification_time, | 44 const base::Time& expected_modification_time, |
44 fileapi::FileSystemContext* context) = 0; | 45 fileapi::FileSystemContext* context) = 0; |
45 | 46 |
46 // Called from FileSystemBackend::CreateFileStreamWriter(). | 47 // Called from FileSystemBackend::CreateFileStreamWriter(). |
47 virtual scoped_ptr<fileapi::FileStreamWriter> CreateFileStreamWriter( | 48 virtual scoped_ptr<fileapi::FileStreamWriter> CreateFileStreamWriter( |
48 const fileapi::FileSystemURL& url, | 49 const fileapi::FileSystemURL& url, |
49 int64 offset, | 50 int64 offset, |
50 fileapi::FileSystemContext* context) = 0; | 51 fileapi::FileSystemContext* context) = 0; |
| 52 |
| 53 // Called from the FileSystemWatcherService class. |
| 54 virtual fileapi::WatcherManager* GetWatcherManager( |
| 55 const fileapi::FileSystemURL& url) = 0; |
51 }; | 56 }; |
52 | 57 |
53 } // namespace chromeos | 58 } // namespace chromeos |
54 | 59 |
55 #endif // CHROME_BROWSER_CHROMEOS_FILEAPI_FILE_SYSTEM_BACKEND_DELEGATE_H_ | 60 #endif // CHROME_BROWSER_CHROMEOS_FILEAPI_FILE_SYSTEM_BACKEND_DELEGATE_H_ |
OLD | NEW |