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