| OLD | NEW |
| 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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_BROWSER_RENDERER_HOST_RESOURCE_MSG_FILTER_H_ | 5 #ifndef CHROME_BROWSER_RENDERER_HOST_RESOURCE_MSG_FILTER_H_ |
| 6 #define CHROME_BROWSER_RENDERER_HOST_RESOURCE_MSG_FILTER_H_ | 6 #define CHROME_BROWSER_RENDERER_HOST_RESOURCE_MSG_FILTER_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| (...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 136 void OnGetPluginPath(const GURL& url, | 136 void OnGetPluginPath(const GURL& url, |
| 137 const std::string& mime_type, | 137 const std::string& mime_type, |
| 138 const std::string& clsid, | 138 const std::string& clsid, |
| 139 FilePath* filename, | 139 FilePath* filename, |
| 140 std::string* actual_mime_type); | 140 std::string* actual_mime_type); |
| 141 void OnOpenChannelToPlugin(const GURL& url, | 141 void OnOpenChannelToPlugin(const GURL& url, |
| 142 const std::string& mime_type, | 142 const std::string& mime_type, |
| 143 const std::string& clsid, | 143 const std::string& clsid, |
| 144 const std::wstring& locale, | 144 const std::wstring& locale, |
| 145 IPC::Message* reply_msg); | 145 IPC::Message* reply_msg); |
| 146 void OnCreateDedicatedWorker(const GURL& url, int* route_id); |
| 147 void OnForwardToWorker(const IPC::Message& msg); |
| 146 void OnDownloadUrl(const IPC::Message& message, | 148 void OnDownloadUrl(const IPC::Message& message, |
| 147 const GURL& url, | 149 const GURL& url, |
| 148 const GURL& referrer); | 150 const GURL& referrer); |
| 149 void OnSpellCheck(const std::wstring& word, | 151 void OnSpellCheck(const std::wstring& word, |
| 150 IPC::Message* reply_msg); | 152 IPC::Message* reply_msg); |
| 151 void OnDnsPrefetch(const std::vector<std::string>& hostnames); | 153 void OnDnsPrefetch(const std::vector<std::string>& hostnames); |
| 152 void OnRendererHistograms(const std::vector<std::string>& histogram_info); | 154 void OnRendererHistograms(const std::vector<std::string>& histogram_info); |
| 153 void OnReceiveContextMenuMsg(const IPC::Message& msg); | 155 void OnReceiveContextMenuMsg(const IPC::Message& msg); |
| 154 // Clipboard messages | 156 // Clipboard messages |
| 155 void OnClipboardWriteObjects(const Clipboard::ObjectMap& objects); | 157 void OnClipboardWriteObjects(const Clipboard::ObjectMap& objects); |
| (...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 264 | 266 |
| 265 scoped_refptr<RenderWidgetHelper> render_widget_helper_; | 267 scoped_refptr<RenderWidgetHelper> render_widget_helper_; |
| 266 | 268 |
| 267 // Object that should take care of audio related resource requests. | 269 // Object that should take care of audio related resource requests. |
| 268 scoped_refptr<AudioRendererHost> audio_renderer_host_; | 270 scoped_refptr<AudioRendererHost> audio_renderer_host_; |
| 269 | 271 |
| 270 DISALLOW_COPY_AND_ASSIGN(ResourceMessageFilter); | 272 DISALLOW_COPY_AND_ASSIGN(ResourceMessageFilter); |
| 271 }; | 273 }; |
| 272 | 274 |
| 273 #endif // CHROME_BROWSER_RENDERER_HOST_RESOURCE_MSG_FILTER_H_ | 275 #endif // CHROME_BROWSER_RENDERER_HOST_RESOURCE_MSG_FILTER_H_ |
| OLD | NEW |