| Index: chrome/browser/renderer_host/resource_message_filter.h
|
| ===================================================================
|
| --- chrome/browser/renderer_host/resource_message_filter.h (revision 30647)
|
| +++ chrome/browser/renderer_host/resource_message_filter.h (working copy)
|
| @@ -22,6 +22,7 @@
|
| #include "base/string16.h"
|
| #include "base/task.h"
|
| #include "build/build_config.h"
|
| +#include "chrome/browser/chrome_thread.h"
|
| #include "chrome/browser/net/resolve_proxy_msg_helper.h"
|
| #include "chrome/browser/renderer_host/resource_dispatcher_host.h"
|
| #include "chrome/common/nacl_types.h"
|
| @@ -97,6 +98,7 @@
|
| virtual void OnChannelError();
|
| virtual void OnChannelClosing();
|
| virtual bool OnMessageReceived(const IPC::Message& message);
|
| + virtual void OnDestruct();
|
|
|
| // ResourceDispatcherHost::Receiver methods:
|
| virtual bool Send(IPC::Message* message);
|
| @@ -150,10 +152,7 @@
|
| void OnGetScreenInfo(gfx::NativeViewId window, IPC::Message* reply);
|
| #endif
|
| void OnGetPlugins(bool refresh, IPC::Message* reply_msg);
|
| - static void OnGetPluginsOnFileThread(ResourceMessageFilter* filter,
|
| - bool refresh,
|
| - IPC::Message* reply_msg);
|
| - void OnPluginsLoaded(IPC::Message* reply_msg);
|
| + void OnGetPluginsOnFileThread(bool refresh, IPC::Message* reply_msg);
|
| void OnGetPluginPath(const GURL& url,
|
| const GURL& policy_url,
|
| const std::string& mime_type,
|
| @@ -284,7 +283,7 @@
|
| void OnSetCacheMode(bool enabled);
|
|
|
| void OnGetFileSize(const FilePath& path, IPC::Message* reply_msg);
|
| - void ReplyGetFileSize(int64 result, void* param);
|
| + void OnGetFileSizeOnFileThread(const FilePath& path, IPC::Message* reply_msg);
|
| void OnKeygen(uint32 key_size_index, const std::string& challenge_string,
|
| const GURL& url, std::string* signed_public_key);
|
| #if defined(OS_LINUX)
|
|
|