| 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 <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
| (...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 155 virtual PP_Resource CreateTCPSocketPrivate(PP_Instance instance) override; | 155 virtual PP_Resource CreateTCPSocketPrivate(PP_Instance instance) override; |
| 156 virtual PP_Resource CreateUDPSocket(PP_Instance instance) override; | 156 virtual PP_Resource CreateUDPSocket(PP_Instance instance) override; |
| 157 virtual PP_Resource CreateUDPSocketPrivate(PP_Instance instance) override; | 157 virtual PP_Resource CreateUDPSocketPrivate(PP_Instance instance) override; |
| 158 virtual PP_Resource CreateVideoDecoder(PP_Instance instance) override; | 158 virtual PP_Resource CreateVideoDecoder(PP_Instance instance) override; |
| 159 virtual PP_Resource CreateVideoDestination(PP_Instance instance) override; | 159 virtual PP_Resource CreateVideoDestination(PP_Instance instance) override; |
| 160 virtual PP_Resource CreateVideoEncoder(PP_Instance instance) override; | 160 virtual PP_Resource CreateVideoEncoder(PP_Instance instance) override; |
| 161 virtual PP_Resource CreateVideoSource(PP_Instance instance) override; | 161 virtual PP_Resource CreateVideoSource(PP_Instance instance) override; |
| 162 virtual PP_Resource CreateWebSocket(PP_Instance instance) override; | 162 virtual PP_Resource CreateWebSocket(PP_Instance instance) override; |
| 163 virtual PP_Resource CreateX509CertificatePrivate( | 163 virtual PP_Resource CreateX509CertificatePrivate( |
| 164 PP_Instance instance) override; | 164 PP_Instance instance) override; |
| 165 virtual PP_Resource CreateFilesystemProvider( PP_Instance instance ) override; |
| 165 #if !defined(OS_NACL) | 166 #if !defined(OS_NACL) |
| 166 virtual PP_Resource CreateAudioInput(PP_Instance instance) override; | 167 virtual PP_Resource CreateAudioInput(PP_Instance instance) override; |
| 167 virtual PP_Resource CreateBroker(PP_Instance instance) override; | 168 virtual PP_Resource CreateBroker(PP_Instance instance) override; |
| 168 virtual PP_Resource CreateBrowserFont( | 169 virtual 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 virtual PP_Resource CreateBuffer(PP_Instance instance, | 172 virtual PP_Resource CreateBuffer(PP_Instance instance, |
| 172 uint32_t size) override; | 173 uint32_t size) override; |
| 173 virtual PP_Resource CreateFlashDRM(PP_Instance instance) override; | 174 virtual PP_Resource CreateFlashDRM(PP_Instance instance) override; |
| 174 virtual PP_Resource CreateFlashFontFile( | 175 virtual PP_Resource CreateFlashFontFile( |
| (...skipping 19 matching lines...) Expand all Loading... |
| 194 | 195 |
| 195 private: | 196 private: |
| 196 Connection GetConnection(); | 197 Connection GetConnection(); |
| 197 DISALLOW_COPY_AND_ASSIGN(ResourceCreationProxy); | 198 DISALLOW_COPY_AND_ASSIGN(ResourceCreationProxy); |
| 198 }; | 199 }; |
| 199 | 200 |
| 200 } // namespace proxy | 201 } // namespace proxy |
| 201 } // namespace ppapi | 202 } // namespace ppapi |
| 202 | 203 |
| 203 #endif // PPAPI_PROXY_RESOURCE_CREATION_PROXY_H_ | 204 #endif // PPAPI_PROXY_RESOURCE_CREATION_PROXY_H_ |
| OLD | NEW |