| OLD | NEW |
| 1 /* Copyright (c) 2011 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 | 5 |
| 6 /* From private/ppb_net_address_private.idl modified Wed Nov 9 12:53:35 2011. *
/ | 6 /* From private/ppb_net_address_private.idl, |
| 7 * modified Wed Jan 4 09:10:03 2012. |
| 8 */ |
| 7 | 9 |
| 8 #ifndef PPAPI_C_PRIVATE_PPB_NET_ADDRESS_PRIVATE_H_ | 10 #ifndef PPAPI_C_PRIVATE_PPB_NET_ADDRESS_PRIVATE_H_ |
| 9 #define PPAPI_C_PRIVATE_PPB_NET_ADDRESS_PRIVATE_H_ | 11 #define PPAPI_C_PRIVATE_PPB_NET_ADDRESS_PRIVATE_H_ |
| 10 | 12 |
| 11 #include "ppapi/c/pp_bool.h" | 13 #include "ppapi/c/pp_bool.h" |
| 12 #include "ppapi/c/pp_macros.h" | 14 #include "ppapi/c/pp_macros.h" |
| 13 #include "ppapi/c/pp_module.h" | 15 #include "ppapi/c/pp_module.h" |
| 14 #include "ppapi/c/pp_stdint.h" | 16 #include "ppapi/c/pp_stdint.h" |
| 15 #include "ppapi/c/pp_var.h" | 17 #include "ppapi/c/pp_var.h" |
| 16 | 18 |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 76 * Gets the "any" address (for IPv4 or IPv6); for use with UDP Bind. | 78 * Gets the "any" address (for IPv4 or IPv6); for use with UDP Bind. |
| 77 */ | 79 */ |
| 78 void (*GetAnyAddress)(PP_Bool is_ipv6, struct PP_NetAddress_Private* addr); | 80 void (*GetAnyAddress)(PP_Bool is_ipv6, struct PP_NetAddress_Private* addr); |
| 79 }; | 81 }; |
| 80 /** | 82 /** |
| 81 * @} | 83 * @} |
| 82 */ | 84 */ |
| 83 | 85 |
| 84 #endif /* PPAPI_C_PRIVATE_PPB_NET_ADDRESS_PRIVATE_H_ */ | 86 #endif /* PPAPI_C_PRIVATE_PPB_NET_ADDRESS_PRIVATE_H_ */ |
| 85 | 87 |
| OLD | NEW |