| 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_HOST_PPAPI_HOST_H_ | 5 #ifndef PPAPI_HOST_PPAPI_HOST_H_ |
| 6 #define PPAPI_HOST_PPAPI_HOST_H_ | 6 #define PPAPI_HOST_PPAPI_HOST_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <memory> | 9 #include <memory> |
| 10 #include <vector> | 10 #include <vector> |
| 11 | 11 |
| 12 #include "base/compiler_specific.h" | 12 #include "base/compiler_specific.h" |
| 13 #include "base/macros.h" | 13 #include "base/macros.h" |
| 14 #include "base/observer_list.h" | 14 #include "base/observer_list.h" |
| 15 #include "ipc/ipc_listener.h" | 15 #include "ipc/ipc_listener.h" |
| 16 #include "ipc/ipc_sender.h" | 16 #include "ipc/ipc_sender.h" |
| 17 #include "ppapi/c/pp_instance.h" | 17 #include "ppapi/c/pp_instance.h" |
| 18 #include "ppapi/c/pp_resource.h" | 18 #include "ppapi/c/pp_resource.h" |
| 19 #include "ppapi/host/ppapi_host_export.h" | 19 #include "ppapi/host/ppapi_host_export.h" |
| 20 #include "ppapi/shared_impl/ppapi_permissions.h" | 20 #include "ppapi/shared_impl/ppapi_permissions.h" |
| 21 | 21 |
| 22 namespace ppapi { | 22 namespace ppapi { |
| 23 | 23 |
| 24 namespace proxy { | 24 namespace proxy { |
| 25 class ResourceMessageCallParams; | 25 class ResourceMessageCallParams; |
| 26 class ResourceMessageReplyParams; | |
| 27 class SerializedHandle; | 26 class SerializedHandle; |
| 28 } | 27 } |
| 29 | 28 |
| 30 namespace host { | 29 namespace host { |
| 31 | 30 |
| 32 class HostFactory; | 31 class HostFactory; |
| 33 struct HostMessageContext; | 32 struct HostMessageContext; |
| 34 class InstanceMessageFilter; | 33 class InstanceMessageFilter; |
| 35 struct ReplyMessageContext; | 34 struct ReplyMessageContext; |
| 36 class ResourceHost; | 35 class ResourceHost; |
| (...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 142 PendingHostResourceMap pending_resource_hosts_; | 141 PendingHostResourceMap pending_resource_hosts_; |
| 143 int next_pending_resource_host_id_; | 142 int next_pending_resource_host_id_; |
| 144 | 143 |
| 145 DISALLOW_COPY_AND_ASSIGN(PpapiHost); | 144 DISALLOW_COPY_AND_ASSIGN(PpapiHost); |
| 146 }; | 145 }; |
| 147 | 146 |
| 148 } // namespace host | 147 } // namespace host |
| 149 } // namespace ppapi | 148 } // namespace ppapi |
| 150 | 149 |
| 151 #endif // PPAPI_HOST_PPAPIE_HOST_H_ | 150 #endif // PPAPI_HOST_PPAPIE_HOST_H_ |
| OLD | NEW |