| Index: chrome/browser/renderer_host/resource_message_filter.h
|
| diff --git a/chrome/browser/renderer_host/resource_message_filter.h b/chrome/browser/renderer_host/resource_message_filter.h
|
| index 52db66c89b7586cbd17d9809b27aae91500c83ff..a6219f100a74df2a9a1f7e3e32822be67b0acfbf 100644
|
| --- a/chrome/browser/renderer_host/resource_message_filter.h
|
| +++ b/chrome/browser/renderer_host/resource_message_filter.h
|
| @@ -37,6 +37,7 @@ class ChromeURLRequestContext;
|
| class DatabaseDispatcherHost;
|
| class DOMStorageDispatcherHost;
|
| class FileSystemDispatcherHost;
|
| +class FileUtilitiesDispatcherHost;
|
| struct FontDescriptor;
|
| class GeolocationDispatcherHost;
|
| class HostZoomMap;
|
| @@ -130,8 +131,6 @@ class ResourceMessageFilter : public IPC::ChannelProxy::MessageFilter,
|
| private:
|
| friend class BrowserThread;
|
| friend class DeleteTask<ResourceMessageFilter>;
|
| - typedef void (*FileInfoWriteFunc)(IPC::Message* reply_msg,
|
| - const base::PlatformFileInfo& file_info);
|
|
|
| virtual ~ResourceMessageFilter();
|
|
|
| @@ -358,15 +357,6 @@ class ResourceMessageFilter : public IPC::ChannelProxy::MessageFilter,
|
| double expected_response_time,
|
| const std::vector<char>& data);
|
| void OnEnableSpdy(bool enable);
|
| - void OnGetFileSize(const FilePath& path, IPC::Message* reply_msg);
|
| - void OnGetFileModificationTime(const FilePath& path, IPC::Message* reply_msg);
|
| - void OnGetFileInfoOnFileThread(const FilePath& path,
|
| - IPC::Message* reply_msg,
|
| - FileInfoWriteFunc write_func);
|
| - void OnOpenFile(const FilePath& path, int mode,IPC::Message* reply_msg);
|
| - void OnOpenFileOnFileThread(const FilePath& path,
|
| - int mode,
|
| - IPC::Message* reply_msg);
|
| void OnKeygen(uint32 key_size_index, const std::string& challenge_string,
|
| const GURL& url, IPC::Message* reply_msg);
|
| void OnKeygenOnWorkerThread(
|
| @@ -506,6 +496,9 @@ class ResourceMessageFilter : public IPC::ChannelProxy::MessageFilter,
|
| // Handles blob related messages.
|
| scoped_ptr<BlobDispatcherHost> blob_dispatcher_host_;
|
|
|
| + // Handles file utilities messages.
|
| + scoped_refptr<FileUtilitiesDispatcherHost> file_utilities_dispatcher_host_;
|
| +
|
| DISALLOW_COPY_AND_ASSIGN(ResourceMessageFilter);
|
| };
|
|
|
|
|