| 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 PPAPI_PROXY_PROXY_CHANNEL_H_ | 5 #ifndef PPAPI_PROXY_PROXY_CHANNEL_H_ |
| 6 #define PPAPI_PROXY_PROXY_CHANNEL_H_ | 6 #define PPAPI_PROXY_PROXY_CHANNEL_H_ |
| 7 | 7 |
| 8 #include "base/files/scoped_file.h" | 8 #include "base/files/scoped_file.h" |
| 9 #include "base/macros.h" |
| 9 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
| 10 #include "base/memory/shared_memory.h" | 11 #include "base/memory/shared_memory.h" |
| 11 #include "base/process/process.h" | 12 #include "base/process/process.h" |
| 13 #include "build/build_config.h" |
| 12 #include "ipc/ipc_listener.h" | 14 #include "ipc/ipc_listener.h" |
| 13 #include "ipc/ipc_platform_file.h" | 15 #include "ipc/ipc_platform_file.h" |
| 14 #include "ipc/ipc_sender.h" | 16 #include "ipc/ipc_sender.h" |
| 15 #include "ipc/ipc_sync_channel.h" | 17 #include "ipc/ipc_sync_channel.h" |
| 16 #include "ppapi/proxy/ppapi_proxy_export.h" | 18 #include "ppapi/proxy/ppapi_proxy_export.h" |
| 17 | 19 |
| 18 namespace base { | 20 namespace base { |
| 19 class SingleThreadTaskRunner; | 21 class SingleThreadTaskRunner; |
| 20 class WaitableEvent; | 22 class WaitableEvent; |
| 21 } | 23 } |
| (...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 136 // remote side has crashed. | 138 // remote side has crashed. |
| 137 scoped_ptr<IPC::SyncChannel> channel_; | 139 scoped_ptr<IPC::SyncChannel> channel_; |
| 138 | 140 |
| 139 DISALLOW_COPY_AND_ASSIGN(ProxyChannel); | 141 DISALLOW_COPY_AND_ASSIGN(ProxyChannel); |
| 140 }; | 142 }; |
| 141 | 143 |
| 142 } // namespace proxy | 144 } // namespace proxy |
| 143 } // namespace ppapi | 145 } // namespace ppapi |
| 144 | 146 |
| 145 #endif // PPAPI_PROXY_PROXY_CHANNEL_H_ | 147 #endif // PPAPI_PROXY_PROXY_CHANNEL_H_ |
| OLD | NEW |