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_PLUGIN_PROCESS_HOST_H_ | 5 #ifndef CHROME_BROWSER_PLUGIN_PROCESS_HOST_H_ |
6 #define CHROME_BROWSER_PLUGIN_PROCESS_HOST_H_ | 6 #define CHROME_BROWSER_PLUGIN_PROCESS_HOST_H_ |
7 | 7 |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
11 #include "base/id_map.h" | 11 #include "base/id_map.h" |
12 #include "base/object_watcher.h" | 12 #include "base/object_watcher.h" |
13 #include "base/process.h" | 13 #include "base/process.h" |
14 #include "base/scoped_ptr.h" | 14 #include "base/scoped_ptr.h" |
15 #include "base/task.h" | 15 #include "base/task.h" |
16 #include "chrome/browser/resource_message_filter.h" | 16 #include "chrome/browser/net/resolve_proxy_msg_helper.h" |
| 17 #include "chrome/browser/renderer_host/resource_message_filter.h" |
17 #include "chrome/common/ipc_channel_proxy.h" | 18 #include "chrome/common/ipc_channel_proxy.h" |
18 #include "chrome/browser/net/resolve_proxy_msg_helper.h" | |
19 #include "chrome/browser/resource_message_filter.h" | |
20 | 19 |
21 class PluginService; | 20 class PluginService; |
22 class PluginProcessHost; | 21 class PluginProcessHost; |
23 class ResourceDispatcherHost; | 22 class ResourceDispatcherHost; |
24 class URLRequestContext; | 23 class URLRequestContext; |
25 struct ViewHostMsg_Resource_Request; | 24 struct ViewHostMsg_Resource_Request; |
26 class GURL; | 25 class GURL; |
27 | 26 |
28 // Represents the browser side of the browser <--> plugin communication | 27 // Represents the browser side of the browser <--> plugin communication |
29 // channel. Different plugins run in their own process, but multiple instances | 28 // channel. Different plugins run in their own process, but multiple instances |
(...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
166 | 165 |
167 // Helper class for handling PluginProcessHost_ResolveProxy messages (manages | 166 // Helper class for handling PluginProcessHost_ResolveProxy messages (manages |
168 // the requests to the proxy service). | 167 // the requests to the proxy service). |
169 ResolveProxyMsgHelper resolve_proxy_msg_helper_; | 168 ResolveProxyMsgHelper resolve_proxy_msg_helper_; |
170 | 169 |
171 DISALLOW_EVIL_CONSTRUCTORS(PluginProcessHost); | 170 DISALLOW_EVIL_CONSTRUCTORS(PluginProcessHost); |
172 }; | 171 }; |
173 | 172 |
174 #endif // CHROME_BROWSER_PLUGIN_PROCESS_HOST_H_ | 173 #endif // CHROME_BROWSER_PLUGIN_PROCESS_HOST_H_ |
175 | 174 |
OLD | NEW |