| 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 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 121 virtual PP_Resource CreateImageData(PP_Instance instance, | 121 virtual PP_Resource CreateImageData(PP_Instance instance, |
| 122 PP_ImageDataFormat format, | 122 PP_ImageDataFormat format, |
| 123 const PP_Size* size, | 123 const PP_Size* size, |
| 124 PP_Bool init_to_zero) OVERRIDE; | 124 PP_Bool init_to_zero) OVERRIDE; |
| 125 virtual PP_Resource CreateImageDataSimple(PP_Instance instance, | 125 virtual PP_Resource CreateImageDataSimple(PP_Instance instance, |
| 126 PP_ImageDataFormat format, | 126 PP_ImageDataFormat format, |
| 127 const PP_Size* size, | 127 const PP_Size* size, |
| 128 PP_Bool init_to_zero) OVERRIDE; | 128 PP_Bool init_to_zero) OVERRIDE; |
| 129 virtual PP_Resource CreateNetAddressFromIPv4Address( | 129 virtual PP_Resource CreateNetAddressFromIPv4Address( |
| 130 PP_Instance instance, | 130 PP_Instance instance, |
| 131 const PP_NetAddress_IPv4_Dev* ipv4_addr) OVERRIDE; | 131 const PP_NetAddress_IPv4* ipv4_addr) OVERRIDE; |
| 132 virtual PP_Resource CreateNetAddressFromIPv6Address( | 132 virtual PP_Resource CreateNetAddressFromIPv6Address( |
| 133 PP_Instance instance, | 133 PP_Instance instance, |
| 134 const PP_NetAddress_IPv6_Dev* 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 CreateNetworkMonitor( | 138 virtual PP_Resource CreateNetworkMonitor( |
| 139 PP_Instance instance, | 139 PP_Instance instance, |
| 140 PPB_NetworkMonitor_Callback callback, | 140 PPB_NetworkMonitor_Callback callback, |
| 141 void* user_data) OVERRIDE; | 141 void* user_data) OVERRIDE; |
| 142 virtual PP_Resource CreatePrinting(PP_Instance) OVERRIDE; | 142 virtual PP_Resource CreatePrinting(PP_Instance) OVERRIDE; |
| 143 virtual PP_Resource CreateTCPServerSocketPrivate( | 143 virtual PP_Resource CreateTCPServerSocketPrivate( |
| 144 PP_Instance instance) OVERRIDE; | 144 PP_Instance instance) OVERRIDE; |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 182 | 182 |
| 183 private: | 183 private: |
| 184 Connection GetConnection(); | 184 Connection GetConnection(); |
| 185 DISALLOW_COPY_AND_ASSIGN(ResourceCreationProxy); | 185 DISALLOW_COPY_AND_ASSIGN(ResourceCreationProxy); |
| 186 }; | 186 }; |
| 187 | 187 |
| 188 } // namespace proxy | 188 } // namespace proxy |
| 189 } // namespace ppapi | 189 } // namespace ppapi |
| 190 | 190 |
| 191 #endif // PPAPI_PROXY_RESOURCE_CREATION_PROXY_H_ | 191 #endif // PPAPI_PROXY_RESOURCE_CREATION_PROXY_H_ |
| OLD | NEW |