| 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 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 156 PP_Resource CreateUDPSocketPrivate(PP_Instance instance) override; | 156 PP_Resource CreateUDPSocketPrivate(PP_Instance instance) override; |
| 157 PP_Resource CreateVideoDecoder(PP_Instance instance) override; | 157 PP_Resource CreateVideoDecoder(PP_Instance instance) override; |
| 158 PP_Resource CreateVideoDestination(PP_Instance instance) override; | 158 PP_Resource CreateVideoDestination(PP_Instance instance) override; |
| 159 PP_Resource CreateVideoEncoder(PP_Instance instance) override; | 159 PP_Resource CreateVideoEncoder(PP_Instance instance) override; |
| 160 PP_Resource CreateVideoSource(PP_Instance instance) override; | 160 PP_Resource CreateVideoSource(PP_Instance instance) override; |
| 161 PP_Resource CreateVpnProvider(PP_Instance instance) override; | 161 PP_Resource CreateVpnProvider(PP_Instance instance) override; |
| 162 PP_Resource CreateWebSocket(PP_Instance instance) override; | 162 PP_Resource CreateWebSocket(PP_Instance instance) override; |
| 163 PP_Resource CreateX509CertificatePrivate(PP_Instance instance) override; | 163 PP_Resource CreateX509CertificatePrivate(PP_Instance instance) override; |
| 164 #if !defined(OS_NACL) | 164 #if !defined(OS_NACL) |
| 165 PP_Resource CreateAudioInput(PP_Instance instance) override; | 165 PP_Resource CreateAudioInput(PP_Instance instance) override; |
| 166 PP_Resource CreateAudioOutput(PP_Instance instance) override; |
| 166 PP_Resource CreateBroker(PP_Instance instance) override; | 167 PP_Resource CreateBroker(PP_Instance instance) override; |
| 167 PP_Resource CreateBrowserFont( | 168 PP_Resource CreateBrowserFont( |
| 168 PP_Instance instance, | 169 PP_Instance instance, |
| 169 const PP_BrowserFont_Trusted_Description* description) override; | 170 const PP_BrowserFont_Trusted_Description* description) override; |
| 170 PP_Resource CreateBuffer(PP_Instance instance, uint32_t size) override; | 171 PP_Resource CreateBuffer(PP_Instance instance, uint32_t size) override; |
| 171 PP_Resource CreateFlashDRM(PP_Instance instance) override; | 172 PP_Resource CreateFlashDRM(PP_Instance instance) override; |
| 172 PP_Resource CreateFlashFontFile( | 173 PP_Resource CreateFlashFontFile( |
| 173 PP_Instance instance, | 174 PP_Instance instance, |
| 174 const PP_BrowserFont_Trusted_Description* description, | 175 const PP_BrowserFont_Trusted_Description* description, |
| 175 PP_PrivateFontCharset charset) override; | 176 PP_PrivateFontCharset charset) override; |
| (...skipping 13 matching lines...) Expand all Loading... |
| 189 | 190 |
| 190 private: | 191 private: |
| 191 Connection GetConnection(); | 192 Connection GetConnection(); |
| 192 DISALLOW_COPY_AND_ASSIGN(ResourceCreationProxy); | 193 DISALLOW_COPY_AND_ASSIGN(ResourceCreationProxy); |
| 193 }; | 194 }; |
| 194 | 195 |
| 195 } // namespace proxy | 196 } // namespace proxy |
| 196 } // namespace ppapi | 197 } // namespace ppapi |
| 197 | 198 |
| 198 #endif // PPAPI_PROXY_RESOURCE_CREATION_PROXY_H_ | 199 #endif // PPAPI_PROXY_RESOURCE_CREATION_PROXY_H_ |
| OLD | NEW |