| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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_DISPATCHER_H_ | 5 #ifndef PPAPI_PROXY_DISPATCHER_H_ |
| 6 #define PPAPI_PROXY_DISPATCHER_H_ | 6 #define PPAPI_PROXY_DISPATCHER_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| 11 | 11 |
| 12 #include "base/linked_ptr.h" | 12 #include "base/linked_ptr.h" |
| 13 #include "base/process.h" | 13 #include "base/process.h" |
| 14 #include "base/scoped_ptr.h" | 14 #include "base/scoped_ptr.h" |
| 15 #include "ipc/ipc_channel.h" | 15 #include "ipc/ipc_channel.h" |
| 16 #include "ipc/ipc_channel_handle.h" | 16 #include "ipc/ipc_channel_handle.h" |
| 17 #include "ipc/ipc_message.h" | 17 #include "ipc/ipc_message.h" |
| 18 #include "ppapi/c/pp_module.h" | 18 #include "ppapi/c/pp_module.h" |
| 19 #include "ppapi/proxy/callback_tracker.h" | 19 #include "ppapi/proxy/callback_tracker.h" |
| 20 #include "ppapi/proxy/interface_id.h" | 20 #include "ppapi/proxy/interface_id.h" |
| 21 #include "ppapi/proxy/plugin_resource_tracker.h" | |
| 22 #include "ppapi/proxy/plugin_var_tracker.h" | 21 #include "ppapi/proxy/plugin_var_tracker.h" |
| 23 | 22 |
| 24 class MessageLoop; | 23 class MessageLoop; |
| 25 struct PPB_Var_Deprecated; | 24 struct PPB_Var_Deprecated; |
| 26 | 25 |
| 27 namespace base { | 26 namespace base { |
| 28 class WaitableEvent; | 27 class WaitableEvent; |
| 29 } | 28 } |
| 30 | 29 |
| 31 namespace IPC { | 30 namespace IPC { |
| (...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 189 | 188 |
| 190 scoped_ptr<VarSerializationRules> serialization_rules_; | 189 scoped_ptr<VarSerializationRules> serialization_rules_; |
| 191 | 190 |
| 192 DISALLOW_COPY_AND_ASSIGN(Dispatcher); | 191 DISALLOW_COPY_AND_ASSIGN(Dispatcher); |
| 193 }; | 192 }; |
| 194 | 193 |
| 195 } // namespace proxy | 194 } // namespace proxy |
| 196 } // namespace pp | 195 } // namespace pp |
| 197 | 196 |
| 198 #endif // PPAPI_PROXY_DISPATCHER_H_ | 197 #endif // PPAPI_PROXY_DISPATCHER_H_ |
| OLD | NEW |