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_RESOURCE_CREATION_PROXY_H_ | 5 #ifndef PPAPI_PROXY_RESOURCE_CREATION_PROXY_H_ |
6 #define PPAPI_PROXY_RESOURCE_CREATION_PROXY_H_ | 6 #define PPAPI_PROXY_RESOURCE_CREATION_PROXY_H_ |
7 | 7 |
8 #include <stdint.h> | 8 #include <stdint.h> |
9 | 9 |
10 #include <string> | 10 #include <string> |
(...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
153 PP_Resource CreateTCPServerSocketPrivate(PP_Instance instance) override; | 153 PP_Resource CreateTCPServerSocketPrivate(PP_Instance instance) override; |
154 PP_Resource CreateTCPSocket1_0(PP_Instance instance) override; | 154 PP_Resource CreateTCPSocket1_0(PP_Instance instance) override; |
155 PP_Resource CreateTCPSocket(PP_Instance instance) override; | 155 PP_Resource CreateTCPSocket(PP_Instance instance) override; |
156 PP_Resource CreateTCPSocketPrivate(PP_Instance instance) override; | 156 PP_Resource CreateTCPSocketPrivate(PP_Instance instance) override; |
157 PP_Resource CreateUDPSocket(PP_Instance instance) override; | 157 PP_Resource CreateUDPSocket(PP_Instance instance) override; |
158 PP_Resource CreateUDPSocketPrivate(PP_Instance instance) override; | 158 PP_Resource CreateUDPSocketPrivate(PP_Instance instance) override; |
159 PP_Resource CreateVideoDecoder(PP_Instance instance) override; | 159 PP_Resource CreateVideoDecoder(PP_Instance instance) override; |
160 PP_Resource CreateVideoDestination(PP_Instance instance) override; | 160 PP_Resource CreateVideoDestination(PP_Instance instance) override; |
161 PP_Resource CreateVideoEncoder(PP_Instance instance) override; | 161 PP_Resource CreateVideoEncoder(PP_Instance instance) override; |
162 PP_Resource CreateVideoSource(PP_Instance instance) override; | 162 PP_Resource CreateVideoSource(PP_Instance instance) override; |
| 163 PP_Resource CreateVpnProvider(PP_Instance instance) override; |
163 PP_Resource CreateWebSocket(PP_Instance instance) override; | 164 PP_Resource CreateWebSocket(PP_Instance instance) override; |
164 PP_Resource CreateX509CertificatePrivate(PP_Instance instance) override; | 165 PP_Resource CreateX509CertificatePrivate(PP_Instance instance) override; |
165 #if !defined(OS_NACL) | 166 #if !defined(OS_NACL) |
166 PP_Resource CreateAudioInput(PP_Instance instance) override; | 167 PP_Resource CreateAudioInput(PP_Instance instance) override; |
167 PP_Resource CreateBroker(PP_Instance instance) override; | 168 PP_Resource CreateBroker(PP_Instance instance) override; |
168 PP_Resource CreateBrowserFont( | 169 PP_Resource CreateBrowserFont( |
169 PP_Instance instance, | 170 PP_Instance instance, |
170 const PP_BrowserFont_Trusted_Description* description) override; | 171 const PP_BrowserFont_Trusted_Description* description) override; |
171 PP_Resource CreateBuffer(PP_Instance instance, uint32_t size) override; | 172 PP_Resource CreateBuffer(PP_Instance instance, uint32_t size) override; |
172 PP_Resource CreateFlashDRM(PP_Instance instance) override; | 173 PP_Resource CreateFlashDRM(PP_Instance instance) override; |
(...skipping 17 matching lines...) Expand all Loading... |
190 | 191 |
191 private: | 192 private: |
192 Connection GetConnection(); | 193 Connection GetConnection(); |
193 DISALLOW_COPY_AND_ASSIGN(ResourceCreationProxy); | 194 DISALLOW_COPY_AND_ASSIGN(ResourceCreationProxy); |
194 }; | 195 }; |
195 | 196 |
196 } // namespace proxy | 197 } // namespace proxy |
197 } // namespace ppapi | 198 } // namespace ppapi |
198 | 199 |
199 #endif // PPAPI_PROXY_RESOURCE_CREATION_PROXY_H_ | 200 #endif // PPAPI_PROXY_RESOURCE_CREATION_PROXY_H_ |
OLD | NEW |