| 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_HostResolver_Private) | 10 PROXIED_API(PPB_HostResolver_Private) |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 | 42 |
| 43 #if !defined(OS_NACL) | 43 #if !defined(OS_NACL) |
| 44 PROXIED_API(PPB_Broker) | 44 PROXIED_API(PPB_Broker) |
| 45 PROXIED_API(PPB_Talk_Private) | 45 PROXIED_API(PPB_Talk_Private) |
| 46 | 46 |
| 47 PROXIED_IFACE(PPB_Broker, PPB_BROKER_TRUSTED_INTERFACE_0_2, | 47 PROXIED_IFACE(PPB_Broker, PPB_BROKER_TRUSTED_INTERFACE_0_2, |
| 48 PPB_BrokerTrusted_0_2) | 48 PPB_BrokerTrusted_0_2) |
| 49 PROXIED_IFACE(PPB_Instance, PPB_BROWSERFONT_TRUSTED_INTERFACE_1_0, | 49 PROXIED_IFACE(PPB_Instance, PPB_BROWSERFONT_TRUSTED_INTERFACE_1_0, |
| 50 PPB_BrowserFont_Trusted_1_0) | 50 PPB_BrowserFont_Trusted_1_0) |
| 51 PROXIED_IFACE(PPB_Instance, | 51 PROXIED_IFACE(PPB_Instance, |
| 52 PPB_CONTENTDECRYPTOR_PRIVATE_INTERFACE_0_2, | 52 PPB_CONTENTDECRYPTOR_PRIVATE_INTERFACE_0_3, |
| 53 PPB_ContentDecryptor_Private_0_2) | 53 PPB_ContentDecryptor_Private_0_3) |
| 54 PROXIED_IFACE(PPB_Instance, PPB_CHARSET_TRUSTED_INTERFACE_1_0, | 54 PROXIED_IFACE(PPB_Instance, PPB_CHARSET_TRUSTED_INTERFACE_1_0, |
| 55 PPB_CharSet_Trusted_1_0) | 55 PPB_CharSet_Trusted_1_0) |
| 56 PROXIED_IFACE(NoAPIName, PPB_FILECHOOSER_TRUSTED_INTERFACE_0_5, | 56 PROXIED_IFACE(NoAPIName, PPB_FILECHOOSER_TRUSTED_INTERFACE_0_5, |
| 57 PPB_FileChooserTrusted_0_5) | 57 PPB_FileChooserTrusted_0_5) |
| 58 PROXIED_IFACE(NoAPIName, PPB_FILECHOOSER_TRUSTED_INTERFACE_0_6, | 58 PROXIED_IFACE(NoAPIName, PPB_FILECHOOSER_TRUSTED_INTERFACE_0_6, |
| 59 PPB_FileChooserTrusted_0_6) | 59 PPB_FileChooserTrusted_0_6) |
| 60 PROXIED_IFACE(PPB_FileRef, PPB_FILEREFPRIVATE_INTERFACE_0_1, | 60 PROXIED_IFACE(PPB_FileRef, PPB_FILEREFPRIVATE_INTERFACE_0_1, |
| 61 PPB_FileRefPrivate_0_1) | 61 PPB_FileRefPrivate_0_1) |
| 62 // This uses the FileIO API which is declared in the public stable file. | 62 // This uses the FileIO API which is declared in the public stable file. |
| 63 PROXIED_IFACE(PPB_FileIO, PPB_FILEIOTRUSTED_INTERFACE_0_4, | 63 PROXIED_IFACE(PPB_FileIO, PPB_FILEIOTRUSTED_INTERFACE_0_4, |
| (...skipping 12 matching lines...) Expand all Loading... |
| 76 PPB_Talk_Private_1_0) | 76 PPB_Talk_Private_1_0) |
| 77 | 77 |
| 78 // Hack to keep font working. The Font 0.6 API is binary compatible with | 78 // Hack to keep font working. The Font 0.6 API is binary compatible with |
| 79 // BrowserFont 1.0, so just map the string to the same thing. | 79 // BrowserFont 1.0, so just map the string to the same thing. |
| 80 // TODO(brettw) remove support for the old Font API. | 80 // TODO(brettw) remove support for the old Font API. |
| 81 PROXIED_IFACE(PPB_Instance, PPB_FONT_DEV_INTERFACE_0_6, | 81 PROXIED_IFACE(PPB_Instance, PPB_FONT_DEV_INTERFACE_0_6, |
| 82 PPB_BrowserFont_Trusted_1_0) | 82 PPB_BrowserFont_Trusted_1_0) |
| 83 #endif // !defined(OS_NACL) | 83 #endif // !defined(OS_NACL) |
| 84 | 84 |
| 85 #include "ppapi/thunk/interfaces_postamble.h" | 85 #include "ppapi/thunk/interfaces_postamble.h" |
| OLD | NEW |