OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 CONTENT_COMMON_FILEAPI_WEBFILESYSTEM_CALLBACK_DISPATCHER_H_ | 5 #ifndef CONTENT_COMMON_FILEAPI_WEBFILESYSTEM_CALLBACK_DISPATCHER_H_ |
6 #define CONTENT_COMMON_FILEAPI_WEBFILESYSTEM_CALLBACK_DISPATCHER_H_ | 6 #define CONTENT_COMMON_FILEAPI_WEBFILESYSTEM_CALLBACK_DISPATCHER_H_ |
7 | 7 |
8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
9 #include "base/platform_file.h" | 9 #include "base/platform_file.h" |
10 #include "webkit/fileapi/file_system_callback_dispatcher.h" | 10 #include "webkit/fileapi/file_system_callback_dispatcher.h" |
11 | 11 |
12 class GURL; | 12 class GURL; |
13 | 13 |
14 namespace WebKit { | 14 namespace WebKit { |
15 class WebFileSystemCallbacks; | 15 class WebFileSystemCallbacks; |
16 } | 16 } |
17 | 17 |
| 18 namespace content { |
| 19 |
18 class WebFileSystemCallbackDispatcher | 20 class WebFileSystemCallbackDispatcher |
19 : public fileapi::FileSystemCallbackDispatcher { | 21 : public fileapi::FileSystemCallbackDispatcher { |
20 public: | 22 public: |
21 explicit WebFileSystemCallbackDispatcher( | 23 explicit WebFileSystemCallbackDispatcher( |
22 WebKit::WebFileSystemCallbacks* callbacks); | 24 WebKit::WebFileSystemCallbacks* callbacks); |
23 | 25 |
24 // FileSystemCallbackDispatcher implementation | 26 // FileSystemCallbackDispatcher implementation |
25 virtual void DidSucceed() OVERRIDE; | 27 virtual void DidSucceed() OVERRIDE; |
26 virtual void DidReadMetadata( | 28 virtual void DidReadMetadata( |
27 const base::PlatformFileInfo& file_info, | 29 const base::PlatformFileInfo& file_info, |
28 const FilePath& platform_path) OVERRIDE; | 30 const FilePath& platform_path) OVERRIDE; |
29 virtual void DidReadDirectory( | 31 virtual void DidReadDirectory( |
30 const std::vector<base::FileUtilProxy::Entry>& entries, | 32 const std::vector<base::FileUtilProxy::Entry>& entries, |
31 bool has_more) OVERRIDE; | 33 bool has_more) OVERRIDE; |
32 virtual void DidOpenFileSystem(const std::string&, | 34 virtual void DidOpenFileSystem(const std::string&, |
33 const GURL&) OVERRIDE; | 35 const GURL&) OVERRIDE; |
34 virtual void DidFail(base::PlatformFileError) OVERRIDE; | 36 virtual void DidFail(base::PlatformFileError) OVERRIDE; |
35 virtual void DidWrite(int64 bytes, bool complete) OVERRIDE; | 37 virtual void DidWrite(int64 bytes, bool complete) OVERRIDE; |
36 | 38 |
37 private: | 39 private: |
38 WebKit::WebFileSystemCallbacks* callbacks_; | 40 WebKit::WebFileSystemCallbacks* callbacks_; |
39 }; | 41 }; |
40 | 42 |
| 43 } // namespace content |
| 44 |
41 #endif // CONTENT_COMMON_FILEAPI_WEBFILESYSTEM_CALLBACK_DISPATCHER_H_ | 45 #endif // CONTENT_COMMON_FILEAPI_WEBFILESYSTEM_CALLBACK_DISPATCHER_H_ |
OLD | NEW |