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_INTERFACE_LIST_H_ | 5 #ifndef PPAPI_PROXY_INTERFACE_LIST_H_ |
6 #define PPAPI_PROXY_INTERFACE_LIST_H_ | 6 #define PPAPI_PROXY_INTERFACE_LIST_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 #include <string> | 9 #include <string> |
10 | 10 |
11 #include "base/containers/scoped_ptr_hash_map.h" | 11 #include "base/containers/scoped_ptr_hash_map.h" |
12 #include "base/macros.h" | 12 #include "base/macros.h" |
| 13 #include "base/memory/scoped_ptr.h" |
13 #include "base/synchronization/lock.h" | 14 #include "base/synchronization/lock.h" |
14 #include "ppapi/proxy/interface_proxy.h" | 15 #include "ppapi/proxy/interface_proxy.h" |
15 #include "ppapi/proxy/ppapi_proxy_export.h" | 16 #include "ppapi/proxy/ppapi_proxy_export.h" |
16 #include "ppapi/shared_impl/ppapi_permissions.h" | 17 #include "ppapi/shared_impl/ppapi_permissions.h" |
17 | 18 |
18 namespace ppapi { | 19 namespace ppapi { |
19 namespace proxy { | 20 namespace proxy { |
20 | 21 |
21 class PPAPI_PROXY_EXPORT InterfaceList { | 22 class PPAPI_PROXY_EXPORT InterfaceList { |
22 public: | 23 public: |
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
102 InterfaceProxy::Factory id_to_factory_[API_ID_COUNT]; | 103 InterfaceProxy::Factory id_to_factory_[API_ID_COUNT]; |
103 | 104 |
104 DISALLOW_COPY_AND_ASSIGN(InterfaceList); | 105 DISALLOW_COPY_AND_ASSIGN(InterfaceList); |
105 }; | 106 }; |
106 | 107 |
107 } // namespace proxy | 108 } // namespace proxy |
108 } // namespace ppapi | 109 } // namespace ppapi |
109 | 110 |
110 #endif // PPAPI_PROXY_INTERFACE_LIST_H_ | 111 #endif // PPAPI_PROXY_INTERFACE_LIST_H_ |
111 | 112 |
OLD | NEW |