| 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 <vector> | 9 #include <vector> |
| 10 | 10 |
| 11 #include "base/compiler_specific.h" | 11 #include "base/compiler_specific.h" |
| 12 #include "base/macros.h" |
| 12 #include "base/memory/linked_ptr.h" | 13 #include "base/memory/linked_ptr.h" |
| 13 #include "base/memory/scoped_ptr.h" | 14 #include "base/memory/scoped_ptr.h" |
| 14 #include "base/memory/scoped_vector.h" | 15 #include "base/memory/scoped_vector.h" |
| 15 #include "base/observer_list.h" | 16 #include "base/observer_list.h" |
| 16 #include "ipc/ipc_listener.h" | 17 #include "ipc/ipc_listener.h" |
| 17 #include "ipc/ipc_sender.h" | 18 #include "ipc/ipc_sender.h" |
| 18 #include "ppapi/c/pp_instance.h" | 19 #include "ppapi/c/pp_instance.h" |
| 19 #include "ppapi/c/pp_resource.h" | 20 #include "ppapi/c/pp_resource.h" |
| 20 #include "ppapi/host/ppapi_host_export.h" | 21 #include "ppapi/host/ppapi_host_export.h" |
| 21 #include "ppapi/shared_impl/ppapi_permissions.h" | 22 #include "ppapi/shared_impl/ppapi_permissions.h" |
| (...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 142 PendingHostResourceMap pending_resource_hosts_; | 143 PendingHostResourceMap pending_resource_hosts_; |
| 143 int next_pending_resource_host_id_; | 144 int next_pending_resource_host_id_; |
| 144 | 145 |
| 145 DISALLOW_COPY_AND_ASSIGN(PpapiHost); | 146 DISALLOW_COPY_AND_ASSIGN(PpapiHost); |
| 146 }; | 147 }; |
| 147 | 148 |
| 148 } // namespace host | 149 } // namespace host |
| 149 } // namespace ppapi | 150 } // namespace ppapi |
| 150 | 151 |
| 151 #endif // PPAPI_HOST_PPAPIE_HOST_H_ | 152 #endif // PPAPI_HOST_PPAPIE_HOST_H_ |
| OLD | NEW |