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