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 // Please see inteface_ppb_public_stable for the documentation on the format of | 5 // Please see inteface_ppb_public_stable for the documentation on the format of |
6 // this file. | 6 // this file. |
7 | 7 |
8 #include "ppapi/thunk/interfaces_preamble.h" | 8 #include "ppapi/thunk/interfaces_preamble.h" |
9 | 9 |
10 PROXIED_API(PPB_Broker) | 10 PROXIED_API(PPB_Broker) |
(...skipping 17 matching lines...) Expand all Loading... |
28 PPB_NetAddress_Private_0_1) | 28 PPB_NetAddress_Private_0_1) |
29 PROXIED_IFACE(NoAPIName, PPB_NETADDRESS_PRIVATE_INTERFACE_1_0, | 29 PROXIED_IFACE(NoAPIName, PPB_NETADDRESS_PRIVATE_INTERFACE_1_0, |
30 PPB_NetAddress_Private_1_0) | 30 PPB_NetAddress_Private_1_0) |
31 PROXIED_IFACE(PPB_TCPSocket_Private, PPB_TCPSOCKET_PRIVATE_INTERFACE_0_3, | 31 PROXIED_IFACE(PPB_TCPSocket_Private, PPB_TCPSOCKET_PRIVATE_INTERFACE_0_3, |
32 PPB_TCPSocket_Private_0_3) | 32 PPB_TCPSocket_Private_0_3) |
33 PROXIED_IFACE(PPB_UDPSocket_Private, PPB_UDPSOCKET_PRIVATE_INTERFACE_0_2, | 33 PROXIED_IFACE(PPB_UDPSocket_Private, PPB_UDPSOCKET_PRIVATE_INTERFACE_0_2, |
34 PPB_UDPSocket_Private_0_2) | 34 PPB_UDPSocket_Private_0_2) |
35 PROXIED_IFACE(PPB_UDPSocket_Private, PPB_UDPSOCKET_PRIVATE_INTERFACE_0_3, | 35 PROXIED_IFACE(PPB_UDPSocket_Private, PPB_UDPSOCKET_PRIVATE_INTERFACE_0_3, |
36 PPB_UDPSocket_Private_0_3) | 36 PPB_UDPSocket_Private_0_3) |
37 | 37 |
| 38 UNPROXIED_IFACE(PPB_NetworkList_Private, PPB_NETWORKLIST_PRIVATE_INTERFACE_0_2, |
| 39 PPB_NetworkList_Private_0_2) |
| 40 UNPROXIED_IFACE(PPB_NetworkMonitor_Private, |
| 41 PPB_NETWORKMONITOR_PRIVATE_INTERFACE_0_2, |
| 42 PPB_NetworkMonitor_Private_0_2) |
| 43 |
38 // Hack to keep font working. The Font 0.6 API is binary compatible with | 44 // Hack to keep font working. The Font 0.6 API is binary compatible with |
39 // BrowserFont 1.0, so just map the string to the same thing. | 45 // BrowserFont 1.0, so just map the string to the same thing. |
40 // TODO(brettw) remove support for the old Font API. | 46 // TODO(brettw) remove support for the old Font API. |
41 PROXIED_IFACE(PPB_Instance, PPB_FONT_DEV_INTERFACE_0_6, | 47 PROXIED_IFACE(PPB_Instance, PPB_FONT_DEV_INTERFACE_0_6, |
42 PPB_BrowserFont_Trusted_1_0) | 48 PPB_BrowserFont_Trusted_1_0) |
43 | 49 |
44 #include "ppapi/thunk/interfaces_postamble.h" | 50 #include "ppapi/thunk/interfaces_postamble.h" |
OLD | NEW |