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) |
11 PROXIED_API(PPB_HostResolver_Private) | 11 PROXIED_API(PPB_HostResolver_Private) |
12 PROXIED_API(PPB_Talk_Private) | 12 PROXIED_API(PPB_Talk_Private) |
13 PROXIED_API(PPB_TCPServerSocket_Private) | 13 PROXIED_API(PPB_TCPServerSocket_Private) |
14 PROXIED_API(PPB_TCPSocket_Private) | 14 PROXIED_API(PPB_TCPSocket_Private) |
15 PROXIED_API(PPB_UDPSocket_Private) | 15 PROXIED_API(PPB_UDPSocket_Private) |
16 PROXIED_API(PPB_X509Certificate_Private) | 16 PROXIED_API(PPB_X509Certificate_Private) |
17 UNPROXIED_API(PPB_NetworkList_Private) | 17 UNPROXIED_API(PPB_NetworkList_Private) |
18 PROXIED_API(PPB_NetworkMonitor_Private) | 18 PROXIED_API(PPB_NetworkMonitor_Private) |
19 | 19 |
20 PROXIED_IFACE(PPB_Broker, PPB_BROKER_TRUSTED_INTERFACE_0_2, | 20 PROXIED_IFACE(PPB_Broker, PPB_BROKER_TRUSTED_INTERFACE_0_2, |
21 PPB_BrokerTrusted_0_2) | 21 PPB_BrokerTrusted_0_2) |
22 PROXIED_IFACE(PPB_Instance, PPB_BROWSERFONT_TRUSTED_INTERFACE_1_0, | 22 PROXIED_IFACE(PPB_Instance, PPB_BROWSERFONT_TRUSTED_INTERFACE_1_0, |
23 PPB_BrowserFont_Trusted_1_0) | 23 PPB_BrowserFont_Trusted_1_0) |
| 24 PROXIED_IFACE(PPB_Instance, |
| 25 PPB_CONTENTDECRYPTOR_PRIVATE_INTERFACE_0_1, |
| 26 PPB_ContentDecryptor_Private_0_1) |
24 PROXIED_IFACE(PPB_Instance, PPB_CHARSET_TRUSTED_INTERFACE_1_0, | 27 PROXIED_IFACE(PPB_Instance, PPB_CHARSET_TRUSTED_INTERFACE_1_0, |
25 PPB_CharSet_Trusted_1_0) | 28 PPB_CharSet_Trusted_1_0) |
26 PROXIED_IFACE(NoAPIName, PPB_FILECHOOSER_TRUSTED_INTERFACE_0_5, | 29 PROXIED_IFACE(NoAPIName, PPB_FILECHOOSER_TRUSTED_INTERFACE_0_5, |
27 PPB_FileChooserTrusted_0_5) | 30 PPB_FileChooserTrusted_0_5) |
28 PROXIED_IFACE(NoAPIName, PPB_FILECHOOSER_TRUSTED_INTERFACE_0_6, | 31 PROXIED_IFACE(NoAPIName, PPB_FILECHOOSER_TRUSTED_INTERFACE_0_6, |
29 PPB_FileChooserTrusted_0_6) | 32 PPB_FileChooserTrusted_0_6) |
30 PROXIED_IFACE(PPB_FileRef, PPB_FILEREFPRIVATE_INTERFACE_0_1, | 33 PROXIED_IFACE(PPB_FileRef, PPB_FILEREFPRIVATE_INTERFACE_0_1, |
31 PPB_FileRefPrivate_0_1) | 34 PPB_FileRefPrivate_0_1) |
32 // This uses the FileIO API which is declared in the public stable file. | 35 // This uses the FileIO API which is declared in the public stable file. |
33 PROXIED_IFACE(PPB_FileIO, PPB_FILEIOTRUSTED_INTERFACE_0_4, | 36 PROXIED_IFACE(PPB_FileIO, PPB_FILEIOTRUSTED_INTERFACE_0_4, |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
65 PPB_NETWORKMONITOR_PRIVATE_INTERFACE_0_2, | 68 PPB_NETWORKMONITOR_PRIVATE_INTERFACE_0_2, |
66 PPB_NetworkMonitor_Private_0_2) | 69 PPB_NetworkMonitor_Private_0_2) |
67 | 70 |
68 // Hack to keep font working. The Font 0.6 API is binary compatible with | 71 // Hack to keep font working. The Font 0.6 API is binary compatible with |
69 // BrowserFont 1.0, so just map the string to the same thing. | 72 // BrowserFont 1.0, so just map the string to the same thing. |
70 // TODO(brettw) remove support for the old Font API. | 73 // TODO(brettw) remove support for the old Font API. |
71 PROXIED_IFACE(PPB_Instance, PPB_FONT_DEV_INTERFACE_0_6, | 74 PROXIED_IFACE(PPB_Instance, PPB_FONT_DEV_INTERFACE_0_6, |
72 PPB_BrowserFont_Trusted_1_0) | 75 PPB_BrowserFont_Trusted_1_0) |
73 | 76 |
74 #include "ppapi/thunk/interfaces_postamble.h" | 77 #include "ppapi/thunk/interfaces_postamble.h" |
OLD | NEW |