| 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 | 9 |
| 10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
| 11 #include "base/memory/linked_ptr.h" | 11 #include "base/memory/linked_ptr.h" |
| 12 #include "base/memory/scoped_ptr.h" | 12 #include "base/memory/scoped_ptr.h" |
| 13 #include "base/memory/scoped_vector.h" |
| 13 #include "base/observer_list.h" | 14 #include "base/observer_list.h" |
| 14 #include "base/memory/scoped_vector.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 { |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 92 typedef std::map<PP_Resource, linked_ptr<ResourceHost> > ResourceMap; | 92 typedef std::map<PP_Resource, linked_ptr<ResourceHost> > ResourceMap; |
| 93 ResourceMap resources_; | 93 ResourceMap resources_; |
| 94 | 94 |
| 95 DISALLOW_COPY_AND_ASSIGN(PpapiHost); | 95 DISALLOW_COPY_AND_ASSIGN(PpapiHost); |
| 96 }; | 96 }; |
| 97 | 97 |
| 98 } // namespace host | 98 } // namespace host |
| 99 } // namespace ppapi | 99 } // namespace ppapi |
| 100 | 100 |
| 101 #endif // PPAPI_HOST_PPAPIE_HOST_H_ | 101 #endif // PPAPI_HOST_PPAPIE_HOST_H_ |
| OLD | NEW |