| 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 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 122 const int32_t* attrib_list) OVERRIDE; | 122 const int32_t* attrib_list) OVERRIDE; |
| 123 virtual PP_Resource CreateHostResolverPrivate(PP_Instance instance) OVERRIDE; | 123 virtual PP_Resource CreateHostResolverPrivate(PP_Instance instance) OVERRIDE; |
| 124 virtual PP_Resource CreateImageData(PP_Instance instance, | 124 virtual PP_Resource CreateImageData(PP_Instance instance, |
| 125 PP_ImageDataFormat format, | 125 PP_ImageDataFormat format, |
| 126 const PP_Size* size, | 126 const PP_Size* size, |
| 127 PP_Bool init_to_zero) OVERRIDE; | 127 PP_Bool init_to_zero) OVERRIDE; |
| 128 virtual PP_Resource CreateImageDataNaCl(PP_Instance instance, | 128 virtual PP_Resource CreateImageDataNaCl(PP_Instance instance, |
| 129 PP_ImageDataFormat format, | 129 PP_ImageDataFormat format, |
| 130 const PP_Size* size, | 130 const PP_Size* size, |
| 131 PP_Bool init_to_zero) OVERRIDE; | 131 PP_Bool init_to_zero) OVERRIDE; |
| 132 virtual PP_Resource CreateNetAddressFromIPv4Address( |
| 133 PP_Instance instance, |
| 134 const PP_NetAddress_IPv4_Dev* ipv4_addr) OVERRIDE; |
| 135 virtual PP_Resource CreateNetAddressFromIPv6Address( |
| 136 PP_Instance instance, |
| 137 const PP_NetAddress_IPv6_Dev* ipv6_addr) OVERRIDE; |
| 132 virtual PP_Resource CreateNetworkMonitor( | 138 virtual PP_Resource CreateNetworkMonitor( |
| 133 PP_Instance instance, | 139 PP_Instance instance, |
| 134 PPB_NetworkMonitor_Callback callback, | 140 PPB_NetworkMonitor_Callback callback, |
| 135 void* user_data) OVERRIDE; | 141 void* user_data) OVERRIDE; |
| 136 virtual PP_Resource CreatePrinting(PP_Instance) OVERRIDE; | 142 virtual PP_Resource CreatePrinting(PP_Instance) OVERRIDE; |
| 137 virtual PP_Resource CreateTCPServerSocketPrivate( | 143 virtual PP_Resource CreateTCPServerSocketPrivate( |
| 138 PP_Instance instance) OVERRIDE; | 144 PP_Instance instance) OVERRIDE; |
| 139 virtual PP_Resource CreateTCPSocketPrivate(PP_Instance instance) OVERRIDE; | 145 virtual PP_Resource CreateTCPSocketPrivate(PP_Instance instance) OVERRIDE; |
| 140 virtual PP_Resource CreateUDPSocketPrivate(PP_Instance instance) OVERRIDE; | 146 virtual PP_Resource CreateUDPSocketPrivate(PP_Instance instance) OVERRIDE; |
| 141 virtual PP_Resource CreateWebSocket(PP_Instance instance) OVERRIDE; | 147 virtual PP_Resource CreateWebSocket(PP_Instance instance) OVERRIDE; |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 174 | 180 |
| 175 private: | 181 private: |
| 176 Connection GetConnection(); | 182 Connection GetConnection(); |
| 177 DISALLOW_COPY_AND_ASSIGN(ResourceCreationProxy); | 183 DISALLOW_COPY_AND_ASSIGN(ResourceCreationProxy); |
| 178 }; | 184 }; |
| 179 | 185 |
| 180 } // namespace proxy | 186 } // namespace proxy |
| 181 } // namespace ppapi | 187 } // namespace ppapi |
| 182 | 188 |
| 183 #endif // PPAPI_PROXY_RESOURCE_CREATION_PROXY_H_ | 189 #endif // PPAPI_PROXY_RESOURCE_CREATION_PROXY_H_ |
| OLD | NEW |