| 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 | 7 |
| 8 #include <queue> | 8 #include <queue> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| 11 #include "base/basictypes.h" | 11 #include "base/basictypes.h" |
| 12 #include "base/files/file_path.h" | 12 #include "base/files/file_path.h" |
| 13 #include "base/memory/ref_counted.h" | 13 #include "base/memory/ref_counted.h" |
| 14 #include "base/memory/scoped_ptr.h" | 14 #include "base/memory/scoped_ptr.h" |
| 15 #include "base/process.h" | 15 #include "base/process.h" |
| 16 #include "base/string16.h" | 16 #include "base/strings/string16.h" |
| 17 #include "content/browser/renderer_host/pepper/browser_ppapi_host_impl.h" | 17 #include "content/browser/renderer_host/pepper/browser_ppapi_host_impl.h" |
| 18 #include "content/browser/renderer_host/pepper/pepper_message_filter.h" | 18 #include "content/browser/renderer_host/pepper/pepper_message_filter.h" |
| 19 #include "content/public/browser/browser_child_process_host_delegate.h" | 19 #include "content/public/browser/browser_child_process_host_delegate.h" |
| 20 #include "content/public/browser/browser_child_process_host_iterator.h" | 20 #include "content/public/browser/browser_child_process_host_iterator.h" |
| 21 #include "ipc/ipc_sender.h" | 21 #include "ipc/ipc_sender.h" |
| 22 #include "ppapi/shared_impl/ppapi_permissions.h" | 22 #include "ppapi/shared_impl/ppapi_permissions.h" |
| 23 | 23 |
| 24 namespace net { | 24 namespace net { |
| 25 class HostResolver; | 25 class HostResolver; |
| 26 } | 26 } |
| (...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 189 public: | 189 public: |
| 190 PpapiBrokerProcessHostIterator() | 190 PpapiBrokerProcessHostIterator() |
| 191 : BrowserChildProcessHostTypeIterator< | 191 : BrowserChildProcessHostTypeIterator< |
| 192 PpapiPluginProcessHost>(PROCESS_TYPE_PPAPI_BROKER) {} | 192 PpapiPluginProcessHost>(PROCESS_TYPE_PPAPI_BROKER) {} |
| 193 }; | 193 }; |
| 194 | 194 |
| 195 } // namespace content | 195 } // namespace content |
| 196 | 196 |
| 197 #endif // CONTENT_BROWSER_PPAPI_PLUGIN_PROCESS_HOST_H_ | 197 #endif // CONTENT_BROWSER_PPAPI_PLUGIN_PROCESS_HOST_H_ |
| 198 | 198 |
| OLD | NEW |