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 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
123 PP_Bool init_to_zero) OVERRIDE; | 123 PP_Bool init_to_zero) OVERRIDE; |
124 virtual PP_Resource CreateNetAddressFromIPv4Address( | 124 virtual PP_Resource CreateNetAddressFromIPv4Address( |
125 PP_Instance instance, | 125 PP_Instance instance, |
126 const PP_NetAddress_IPv4* ipv4_addr) OVERRIDE; | 126 const PP_NetAddress_IPv4* ipv4_addr) OVERRIDE; |
127 virtual PP_Resource CreateNetAddressFromIPv6Address( | 127 virtual PP_Resource CreateNetAddressFromIPv6Address( |
128 PP_Instance instance, | 128 PP_Instance instance, |
129 const PP_NetAddress_IPv6* ipv6_addr) OVERRIDE; | 129 const PP_NetAddress_IPv6* ipv6_addr) OVERRIDE; |
130 virtual PP_Resource CreateNetAddressFromNetAddressPrivate( | 130 virtual PP_Resource CreateNetAddressFromNetAddressPrivate( |
131 PP_Instance instance, | 131 PP_Instance instance, |
132 const PP_NetAddress_Private& private_addr) OVERRIDE; | 132 const PP_NetAddress_Private& private_addr) OVERRIDE; |
133 virtual PP_Resource CreateNetworkMonitor( | 133 virtual PP_Resource CreateNetworkMonitorPrivate( |
134 PP_Instance instance, | 134 PP_Instance instance) OVERRIDE; |
135 PPB_NetworkMonitor_Callback callback, | |
136 void* user_data) OVERRIDE; | |
137 virtual PP_Resource CreatePrinting(PP_Instance) OVERRIDE; | 135 virtual PP_Resource CreatePrinting(PP_Instance) OVERRIDE; |
138 virtual PP_Resource CreateTCPServerSocketPrivate( | 136 virtual PP_Resource CreateTCPServerSocketPrivate( |
139 PP_Instance instance) OVERRIDE; | 137 PP_Instance instance) OVERRIDE; |
140 virtual PP_Resource CreateTCPSocket(PP_Instance instance) OVERRIDE; | 138 virtual PP_Resource CreateTCPSocket(PP_Instance instance) OVERRIDE; |
141 virtual PP_Resource CreateTCPSocketPrivate(PP_Instance instance) OVERRIDE; | 139 virtual PP_Resource CreateTCPSocketPrivate(PP_Instance instance) OVERRIDE; |
142 virtual PP_Resource CreateUDPSocket(PP_Instance instance) OVERRIDE; | 140 virtual PP_Resource CreateUDPSocket(PP_Instance instance) OVERRIDE; |
143 virtual PP_Resource CreateUDPSocketPrivate(PP_Instance instance) OVERRIDE; | 141 virtual PP_Resource CreateUDPSocketPrivate(PP_Instance instance) OVERRIDE; |
144 virtual PP_Resource CreateVideoDestination(PP_Instance instance) OVERRIDE; | 142 virtual PP_Resource CreateVideoDestination(PP_Instance instance) OVERRIDE; |
145 virtual PP_Resource CreateVideoSource(PP_Instance instance) OVERRIDE; | 143 virtual PP_Resource CreateVideoSource(PP_Instance instance) OVERRIDE; |
146 virtual PP_Resource CreateWebSocket(PP_Instance instance) OVERRIDE; | 144 virtual PP_Resource CreateWebSocket(PP_Instance instance) OVERRIDE; |
(...skipping 30 matching lines...) Expand all Loading... |
177 | 175 |
178 private: | 176 private: |
179 Connection GetConnection(); | 177 Connection GetConnection(); |
180 DISALLOW_COPY_AND_ASSIGN(ResourceCreationProxy); | 178 DISALLOW_COPY_AND_ASSIGN(ResourceCreationProxy); |
181 }; | 179 }; |
182 | 180 |
183 } // namespace proxy | 181 } // namespace proxy |
184 } // namespace ppapi | 182 } // namespace ppapi |
185 | 183 |
186 #endif // PPAPI_PROXY_RESOURCE_CREATION_PROXY_H_ | 184 #endif // PPAPI_PROXY_RESOURCE_CREATION_PROXY_H_ |
OLD | NEW |