| 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 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 149 virtual PP_Resource CreatePrinting(PP_Instance) override; | 149 virtual PP_Resource CreatePrinting(PP_Instance) override; |
| 150 virtual PP_Resource CreateTCPServerSocketPrivate( | 150 virtual PP_Resource CreateTCPServerSocketPrivate( |
| 151 PP_Instance instance) override; | 151 PP_Instance instance) override; |
| 152 virtual PP_Resource CreateTCPSocket1_0(PP_Instance instance) override; | 152 virtual PP_Resource CreateTCPSocket1_0(PP_Instance instance) override; |
| 153 virtual PP_Resource CreateTCPSocket(PP_Instance instance) override; | 153 virtual PP_Resource CreateTCPSocket(PP_Instance instance) override; |
| 154 virtual PP_Resource CreateTCPSocketPrivate(PP_Instance instance) override; | 154 virtual PP_Resource CreateTCPSocketPrivate(PP_Instance instance) override; |
| 155 virtual PP_Resource CreateUDPSocket(PP_Instance instance) override; | 155 virtual PP_Resource CreateUDPSocket(PP_Instance instance) override; |
| 156 virtual PP_Resource CreateUDPSocketPrivate(PP_Instance instance) override; | 156 virtual PP_Resource CreateUDPSocketPrivate(PP_Instance instance) override; |
| 157 virtual PP_Resource CreateVideoDecoder(PP_Instance instance) override; | 157 virtual PP_Resource CreateVideoDecoder(PP_Instance instance) override; |
| 158 virtual PP_Resource CreateVideoDestination(PP_Instance instance) override; | 158 virtual PP_Resource CreateVideoDestination(PP_Instance instance) override; |
| 159 virtual PP_Resource CreateVideoEncoder(PP_Instance instance) override; |
| 159 virtual PP_Resource CreateVideoSource(PP_Instance instance) override; | 160 virtual PP_Resource CreateVideoSource(PP_Instance instance) override; |
| 160 virtual PP_Resource CreateWebSocket(PP_Instance instance) override; | 161 virtual PP_Resource CreateWebSocket(PP_Instance instance) override; |
| 161 virtual PP_Resource CreateX509CertificatePrivate( | 162 virtual PP_Resource CreateX509CertificatePrivate( |
| 162 PP_Instance instance) override; | 163 PP_Instance instance) override; |
| 163 #if !defined(OS_NACL) | 164 #if !defined(OS_NACL) |
| 164 virtual PP_Resource CreateAudioInput(PP_Instance instance) override; | 165 virtual PP_Resource CreateAudioInput(PP_Instance instance) override; |
| 165 virtual PP_Resource CreateBroker(PP_Instance instance) override; | 166 virtual PP_Resource CreateBroker(PP_Instance instance) override; |
| 166 virtual PP_Resource CreateBrowserFont( | 167 virtual PP_Resource CreateBrowserFont( |
| 167 PP_Instance instance, | 168 PP_Instance instance, |
| 168 const PP_BrowserFont_Trusted_Description* description) override; | 169 const PP_BrowserFont_Trusted_Description* description) override; |
| (...skipping 24 matching lines...) Expand all Loading... |
| 193 | 194 |
| 194 private: | 195 private: |
| 195 Connection GetConnection(); | 196 Connection GetConnection(); |
| 196 DISALLOW_COPY_AND_ASSIGN(ResourceCreationProxy); | 197 DISALLOW_COPY_AND_ASSIGN(ResourceCreationProxy); |
| 197 }; | 198 }; |
| 198 | 199 |
| 199 } // namespace proxy | 200 } // namespace proxy |
| 200 } // namespace ppapi | 201 } // namespace ppapi |
| 201 | 202 |
| 202 #endif // PPAPI_PROXY_RESOURCE_CREATION_PROXY_H_ | 203 #endif // PPAPI_PROXY_RESOURCE_CREATION_PROXY_H_ |
| OLD | NEW |