OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 CONTENT_BROWSER_PLUGIN_PROCESS_HOST_H_ | 5 #ifndef CONTENT_BROWSER_PLUGIN_PROCESS_HOST_H_ |
6 #define CONTENT_BROWSER_PLUGIN_PROCESS_HOST_H_ | 6 #define CONTENT_BROWSER_PLUGIN_PROCESS_HOST_H_ |
7 | 7 |
8 #include "build/build_config.h" | 8 #include "build/build_config.h" |
9 | 9 |
10 #include <list> | 10 #include <list> |
11 #include <map> | 11 #include <map> |
12 #include <set> | 12 #include <set> |
13 #include <string> | 13 #include <string> |
14 #include <vector> | 14 #include <vector> |
15 | 15 |
16 #include "base/basictypes.h" | 16 #include "base/basictypes.h" |
17 #include "base/compiler_specific.h" | 17 #include "base/compiler_specific.h" |
18 #include "base/memory/ref_counted.h" | 18 #include "base/memory/ref_counted.h" |
19 #include "content/common/content_export.h" | 19 #include "content/common/content_export.h" |
20 #include "content/public/browser/browser_child_process_host_delegate.h" | 20 #include "content/public/browser/browser_child_process_host_delegate.h" |
21 #include "content/public/browser/browser_child_process_host_iterator.h" | 21 #include "content/public/browser/browser_child_process_host_iterator.h" |
22 #include "content/public/common/process_type.h" | 22 #include "content/public/common/process_type.h" |
| 23 #include "content/public/common/resource_type.h" |
23 #include "content/public/common/webplugininfo.h" | 24 #include "content/public/common/webplugininfo.h" |
24 #include "ipc/ipc_channel_proxy.h" | 25 #include "ipc/ipc_channel_proxy.h" |
25 #include "ui/gfx/native_widget_types.h" | 26 #include "ui/gfx/native_widget_types.h" |
26 #include "webkit/common/resource_type.h" | |
27 | 27 |
28 struct ResourceHostMsg_Request; | 28 struct ResourceHostMsg_Request; |
29 | 29 |
30 namespace gfx { | 30 namespace gfx { |
31 class Rect; | 31 class Rect; |
32 } | 32 } |
33 | 33 |
34 namespace IPC { | 34 namespace IPC { |
35 struct ChannelHandle; | 35 struct ChannelHandle; |
36 } | 36 } |
(...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
196 : public BrowserChildProcessHostTypeIterator<PluginProcessHost> { | 196 : public BrowserChildProcessHostTypeIterator<PluginProcessHost> { |
197 public: | 197 public: |
198 PluginProcessHostIterator() | 198 PluginProcessHostIterator() |
199 : BrowserChildProcessHostTypeIterator<PluginProcessHost>( | 199 : BrowserChildProcessHostTypeIterator<PluginProcessHost>( |
200 PROCESS_TYPE_PLUGIN) {} | 200 PROCESS_TYPE_PLUGIN) {} |
201 }; | 201 }; |
202 | 202 |
203 } // namespace content | 203 } // namespace content |
204 | 204 |
205 #endif // CONTENT_BROWSER_PLUGIN_PROCESS_HOST_H_ | 205 #endif // CONTENT_BROWSER_PLUGIN_PROCESS_HOST_H_ |
OLD | NEW |