Chromium Code Reviews| 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 28 matching lines...) Expand all Loading... | |
| 39 PPB_Talk_Private_1_0) | 39 PPB_Talk_Private_1_0) |
| 40 PROXIED_IFACE(PPB_TCPServerSocket_Private, | 40 PROXIED_IFACE(PPB_TCPServerSocket_Private, |
| 41 PPB_TCPSERVERSOCKET_PRIVATE_INTERFACE_0_1, | 41 PPB_TCPSERVERSOCKET_PRIVATE_INTERFACE_0_1, |
| 42 PPB_TCPServerSocket_Private_0_1) | 42 PPB_TCPServerSocket_Private_0_1) |
| 43 PROXIED_IFACE(PPB_TCPSocket_Private, PPB_TCPSOCKET_PRIVATE_INTERFACE_0_3, | 43 PROXIED_IFACE(PPB_TCPSocket_Private, PPB_TCPSOCKET_PRIVATE_INTERFACE_0_3, |
| 44 PPB_TCPSocket_Private_0_3) | 44 PPB_TCPSocket_Private_0_3) |
| 45 PROXIED_IFACE(PPB_UDPSocket_Private, PPB_UDPSOCKET_PRIVATE_INTERFACE_0_2, | 45 PROXIED_IFACE(PPB_UDPSocket_Private, PPB_UDPSOCKET_PRIVATE_INTERFACE_0_2, |
| 46 PPB_UDPSocket_Private_0_2) | 46 PPB_UDPSocket_Private_0_2) |
| 47 PROXIED_IFACE(PPB_UDPSocket_Private, PPB_UDPSOCKET_PRIVATE_INTERFACE_0_3, | 47 PROXIED_IFACE(PPB_UDPSocket_Private, PPB_UDPSOCKET_PRIVATE_INTERFACE_0_3, |
| 48 PPB_UDPSocket_Private_0_3) | 48 PPB_UDPSocket_Private_0_3) |
| 49 PROXIED_IFACE(PPB_Flash_X509Certificate, | |
|
yzshen1
2012/03/22 23:32:40
I think Flash-related interfaces are not put here.
raymes
2012/03/26 16:05:57
Done.
| |
| 50 PPB_FLASH_X509CERTIFICATE_INTERFACE_0_1, | |
| 51 PPB_Flash_X509Certificate_0_1) | |
| 49 | 52 |
| 50 PROXIED_IFACE(NoAPIName, PPB_NETWORKLIST_PRIVATE_INTERFACE_0_2, | 53 PROXIED_IFACE(NoAPIName, PPB_NETWORKLIST_PRIVATE_INTERFACE_0_2, |
| 51 PPB_NetworkList_Private_0_2) | 54 PPB_NetworkList_Private_0_2) |
| 52 PROXIED_IFACE(PPB_NetworkMonitor_Private, | 55 PROXIED_IFACE(PPB_NetworkMonitor_Private, |
| 53 PPB_NETWORKMONITOR_PRIVATE_INTERFACE_0_2, | 56 PPB_NETWORKMONITOR_PRIVATE_INTERFACE_0_2, |
| 54 PPB_NetworkMonitor_Private_0_2) | 57 PPB_NetworkMonitor_Private_0_2) |
| 55 | 58 |
| 56 // Hack to keep font working. The Font 0.6 API is binary compatible with | 59 // Hack to keep font working. The Font 0.6 API is binary compatible with |
| 57 // BrowserFont 1.0, so just map the string to the same thing. | 60 // BrowserFont 1.0, so just map the string to the same thing. |
| 58 // TODO(brettw) remove support for the old Font API. | 61 // TODO(brettw) remove support for the old Font API. |
| 59 PROXIED_IFACE(PPB_Instance, PPB_FONT_DEV_INTERFACE_0_6, | 62 PROXIED_IFACE(PPB_Instance, PPB_FONT_DEV_INTERFACE_0_6, |
| 60 PPB_BrowserFont_Trusted_1_0) | 63 PPB_BrowserFont_Trusted_1_0) |
| 61 | 64 |
| 62 #include "ppapi/thunk/interfaces_postamble.h" | 65 #include "ppapi/thunk/interfaces_postamble.h" |
| OLD | NEW |