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_PPAPI_PLUGIN_PROCESS_HOST_H_ | 5 #ifndef CONTENT_BROWSER_PPAPI_PLUGIN_PROCESS_HOST_H_ |
6 #define CONTENT_BROWSER_PPAPI_PLUGIN_PROCESS_HOST_H_ | 6 #define CONTENT_BROWSER_PPAPI_PLUGIN_PROCESS_HOST_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <string> | 9 #include <string> |
10 #include <queue> | 10 #include <queue> |
11 | 11 |
12 #include "base/basictypes.h" | 12 #include "base/basictypes.h" |
13 #include "base/file_path.h" | 13 #include "base/file_path.h" |
14 #include "base/memory/ref_counted.h" | 14 #include "base/memory/ref_counted.h" |
15 #include "base/memory/scoped_ptr.h" | 15 #include "base/memory/scoped_ptr.h" |
16 #include "content/browser/renderer_host/pepper_file_message_filter.h" | 16 #include "content/browser/renderer_host/pepper/pepper_file_message_filter.h" |
17 #include "content/browser/renderer_host/pepper_message_filter.h" | 17 #include "content/browser/renderer_host/pepper/pepper_message_filter.h" |
18 #include "content/public/browser/browser_child_process_host_delegate.h" | 18 #include "content/public/browser/browser_child_process_host_delegate.h" |
19 #include "content/public/browser/browser_child_process_host_iterator.h" | 19 #include "content/public/browser/browser_child_process_host_iterator.h" |
20 #include "ipc/ipc_sender.h" | 20 #include "ipc/ipc_sender.h" |
21 | 21 |
22 class BrowserChildProcessHostImpl; | 22 class BrowserChildProcessHostImpl; |
23 | 23 |
24 namespace content { | 24 namespace content { |
25 struct PepperPluginInfo; | 25 struct PepperPluginInfo; |
26 class ResourceContext; | 26 class ResourceContext; |
27 } | 27 } |
(...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
164 : public content::BrowserChildProcessHostTypeIterator< | 164 : public content::BrowserChildProcessHostTypeIterator< |
165 PpapiPluginProcessHost> { | 165 PpapiPluginProcessHost> { |
166 public: | 166 public: |
167 PpapiBrokerProcessHostIterator() | 167 PpapiBrokerProcessHostIterator() |
168 : content::BrowserChildProcessHostTypeIterator< | 168 : content::BrowserChildProcessHostTypeIterator< |
169 PpapiPluginProcessHost>(content::PROCESS_TYPE_PPAPI_BROKER) {} | 169 PpapiPluginProcessHost>(content::PROCESS_TYPE_PPAPI_BROKER) {} |
170 }; | 170 }; |
171 | 171 |
172 #endif // CONTENT_BROWSER_PPAPI_PLUGIN_PROCESS_HOST_H_ | 172 #endif // CONTENT_BROWSER_PPAPI_PLUGIN_PROCESS_HOST_H_ |
173 | 173 |
OLD | NEW |