OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 PPAPI_NACL_IRT_PPAPI_DISPATCHER_H_ | 5 #ifndef PPAPI_NACL_IRT_PPAPI_DISPATCHER_H_ |
6 #define PPAPI_NACL_IRT_PPAPI_DISPATCHER_H_ | 6 #define PPAPI_NACL_IRT_PPAPI_DISPATCHER_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 #include <set> | 9 #include <set> |
10 #include <string> | 10 #include <string> |
11 | 11 |
| 12 #include "base/files/file.h" |
12 #include "base/memory/ref_counted.h" | 13 #include "base/memory/ref_counted.h" |
13 #include "base/platform_file.h" | |
14 #include "base/process/process_handle.h" | 14 #include "base/process/process_handle.h" |
15 #include "ipc/ipc_listener.h" | 15 #include "ipc/ipc_listener.h" |
16 #include "ipc/ipc_platform_file.h" | 16 #include "ipc/ipc_platform_file.h" |
17 #include "ipc/ipc_sender.h" | 17 #include "ipc/ipc_sender.h" |
18 #include "ppapi/c/pp_instance.h" | 18 #include "ppapi/c/pp_instance.h" |
19 #include "ppapi/c/trusted/ppb_browser_font_trusted.h" | 19 #include "ppapi/c/trusted/ppb_browser_font_trusted.h" |
20 #include "ppapi/proxy/connection.h" | 20 #include "ppapi/proxy/connection.h" |
21 #include "ppapi/proxy/plugin_dispatcher.h" | 21 #include "ppapi/proxy/plugin_dispatcher.h" |
22 #include "ppapi/proxy/plugin_proxy_delegate.h" | 22 #include "ppapi/proxy/plugin_proxy_delegate.h" |
23 | 23 |
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
91 | 91 |
92 scoped_refptr<base::MessageLoopProxy> message_loop_; | 92 scoped_refptr<base::MessageLoopProxy> message_loop_; |
93 base::WaitableEvent* shutdown_event_; | 93 base::WaitableEvent* shutdown_event_; |
94 int renderer_ipc_fd_; | 94 int renderer_ipc_fd_; |
95 scoped_ptr<IPC::SyncChannel> channel_; | 95 scoped_ptr<IPC::SyncChannel> channel_; |
96 }; | 96 }; |
97 | 97 |
98 } // namespace ppapi | 98 } // namespace ppapi |
99 | 99 |
100 #endif // PPAPI_NACL_IRT_PPAPI_DISPATCHER_H_ | 100 #endif // PPAPI_NACL_IRT_PPAPI_DISPATCHER_H_ |
OLD | NEW |