| 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 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 133 PP_Instance instance, | 133 PP_Instance instance, |
| 134 const PP_NetAddress_IPv6* ipv6_addr) OVERRIDE; | 134 const PP_NetAddress_IPv6* ipv6_addr) OVERRIDE; |
| 135 virtual PP_Resource CreateNetAddressFromNetAddressPrivate( | 135 virtual PP_Resource CreateNetAddressFromNetAddressPrivate( |
| 136 PP_Instance instance, | 136 PP_Instance instance, |
| 137 const PP_NetAddress_Private& private_addr) OVERRIDE; | 137 const PP_NetAddress_Private& private_addr) OVERRIDE; |
| 138 virtual PP_Resource CreateNetworkMonitorPrivate( | 138 virtual PP_Resource CreateNetworkMonitorPrivate( |
| 139 PP_Instance instance) OVERRIDE; | 139 PP_Instance instance) OVERRIDE; |
| 140 virtual PP_Resource CreatePrinting(PP_Instance) OVERRIDE; | 140 virtual PP_Resource CreatePrinting(PP_Instance) OVERRIDE; |
| 141 virtual PP_Resource CreateTCPServerSocketPrivate( | 141 virtual PP_Resource CreateTCPServerSocketPrivate( |
| 142 PP_Instance instance) OVERRIDE; | 142 PP_Instance instance) OVERRIDE; |
| 143 virtual PP_Resource CreateTCPSocket(PP_Instance instance) OVERRIDE; | 143 virtual PP_Resource CreateTCPSocket1_0(PP_Instance instance) OVERRIDE; |
| 144 virtual PP_Resource CreateTCPSocket(PP_Instance instance, |
| 145 PP_NetAddress_Family family) OVERRIDE; |
| 144 virtual PP_Resource CreateTCPSocketPrivate(PP_Instance instance) OVERRIDE; | 146 virtual PP_Resource CreateTCPSocketPrivate(PP_Instance instance) OVERRIDE; |
| 145 virtual PP_Resource CreateUDPSocket(PP_Instance instance) OVERRIDE; | 147 virtual PP_Resource CreateUDPSocket(PP_Instance instance) OVERRIDE; |
| 146 virtual PP_Resource CreateUDPSocketPrivate(PP_Instance instance) OVERRIDE; | 148 virtual PP_Resource CreateUDPSocketPrivate(PP_Instance instance) OVERRIDE; |
| 147 virtual PP_Resource CreateVideoDestination(PP_Instance instance) OVERRIDE; | 149 virtual PP_Resource CreateVideoDestination(PP_Instance instance) OVERRIDE; |
| 148 virtual PP_Resource CreateVideoSource(PP_Instance instance) OVERRIDE; | 150 virtual PP_Resource CreateVideoSource(PP_Instance instance) OVERRIDE; |
| 149 virtual PP_Resource CreateWebSocket(PP_Instance instance) OVERRIDE; | 151 virtual PP_Resource CreateWebSocket(PP_Instance instance) OVERRIDE; |
| 150 virtual PP_Resource CreateX509CertificatePrivate( | 152 virtual PP_Resource CreateX509CertificatePrivate( |
| 151 PP_Instance instance) OVERRIDE; | 153 PP_Instance instance) OVERRIDE; |
| 152 #if !defined(OS_NACL) | 154 #if !defined(OS_NACL) |
| 153 virtual PP_Resource CreateAudioInput(PP_Instance instance) OVERRIDE; | 155 virtual PP_Resource CreateAudioInput(PP_Instance instance) OVERRIDE; |
| (...skipping 26 matching lines...) Expand all Loading... |
| 180 | 182 |
| 181 private: | 183 private: |
| 182 Connection GetConnection(); | 184 Connection GetConnection(); |
| 183 DISALLOW_COPY_AND_ASSIGN(ResourceCreationProxy); | 185 DISALLOW_COPY_AND_ASSIGN(ResourceCreationProxy); |
| 184 }; | 186 }; |
| 185 | 187 |
| 186 } // namespace proxy | 188 } // namespace proxy |
| 187 } // namespace ppapi | 189 } // namespace ppapi |
| 188 | 190 |
| 189 #endif // PPAPI_PROXY_RESOURCE_CREATION_PROXY_H_ | 191 #endif // PPAPI_PROXY_RESOURCE_CREATION_PROXY_H_ |
| OLD | NEW |