Chromium Code Reviews| Index: content/browser/file_system/file_system_dispatcher_host.h |
| diff --git a/content/browser/file_system/file_system_dispatcher_host.h b/content/browser/file_system/file_system_dispatcher_host.h |
| index 80426aaf9620f3a75a885c6d03ff00393abb5e45..4843031850486767699d22707818f564ec776162 100644 |
| --- a/content/browser/file_system/file_system_dispatcher_host.h |
| +++ b/content/browser/file_system/file_system_dispatcher_host.h |
| @@ -12,6 +12,7 @@ |
| #include "content/browser/browser_message_filter.h" |
| #include "webkit/fileapi/file_system_types.h" |
| +class FilePath; |
| class GURL; |
| class Receiver; |
| class RenderMessageFilter; |
| @@ -45,6 +46,8 @@ class FileSystemDispatcherHost : public BrowserMessageFilter { |
| // BrowserMessageFilter implementation. |
| virtual void OnChannelConnected(int32 peer_pid); |
| + virtual void OverrideThreadForMessage(const IPC::Message& message, |
| + BrowserThread::ID* thread); |
|
ericu
2011/08/17 01:14:31
How about an OVERRIDE tag here?
kinuko
2011/08/17 07:55:28
Done.
|
| virtual bool OnMessageReceived(const IPC::Message& message, |
| bool* message_was_ok); |
| @@ -84,6 +87,8 @@ class FileSystemDispatcherHost : public BrowserMessageFilter { |
| void OnOpenFile(int request_id, const GURL& path, int file_flags); |
| void OnWillUpdate(const GURL& path); |
| void OnDidUpdate(const GURL& path, int64 delta); |
| + void OnSyncGetPlatformPath(const GURL& path, |
| + FilePath* platform_path); |
| // Creates a new FileSystemOperation. |
| fileapi::FileSystemOperation* GetNewOperation(int request_id); |