| 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 // See interfaces_ppb_private_no_permissions.h for other private interfaces. | 10 // See interfaces_ppb_private_no_permissions.h for other private interfaces. |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 PROXIED_IFACE(NoAPIName, PPB_TALK_PRIVATE_INTERFACE_1_0, | 45 PROXIED_IFACE(NoAPIName, PPB_TALK_PRIVATE_INTERFACE_1_0, |
| 46 PPB_Talk_Private_1_0) | 46 PPB_Talk_Private_1_0) |
| 47 PROXIED_IFACE(NoAPIName, PPB_TALK_PRIVATE_INTERFACE_2_0, | 47 PROXIED_IFACE(NoAPIName, PPB_TALK_PRIVATE_INTERFACE_2_0, |
| 48 PPB_Talk_Private_2_0) | 48 PPB_Talk_Private_2_0) |
| 49 // This uses the FileIO API which is declared in the public stable file. | 49 // This uses the FileIO API which is declared in the public stable file. |
| 50 PROXIED_IFACE(NoAPIName, PPB_FILEIOTRUSTED_INTERFACE_0_4, PPB_FileIOTrusted_0_4) | 50 PROXIED_IFACE(NoAPIName, PPB_FILEIOTRUSTED_INTERFACE_0_4, PPB_FileIOTrusted_0_4) |
| 51 | 51 |
| 52 PROXIED_IFACE(NoAPIName, PPB_URLLOADERTRUSTED_INTERFACE_0_3, | 52 PROXIED_IFACE(NoAPIName, PPB_URLLOADERTRUSTED_INTERFACE_0_3, |
| 53 PPB_URLLoaderTrusted_0_3) | 53 PPB_URLLoaderTrusted_0_3) |
| 54 | 54 |
| 55 PROXIED_IFACE(NoAPIName, PPB_VIDEODESTINATION_PRIVATE_INTERFACE_0_1, | |
| 56 PPB_VideoDestination_Private_0_1) | |
| 57 PROXIED_IFACE(NoAPIName, PPB_VIDEOSOURCE_PRIVATE_INTERFACE_0_1, | |
| 58 PPB_VideoSource_Private_0_1) | |
| 59 | |
| 60 // Hack to keep font working. The Font 0.6 API is binary compatible with | 55 // Hack to keep font working. The Font 0.6 API is binary compatible with |
| 61 // BrowserFont 1.0, so just map the string to the same thing. | 56 // BrowserFont 1.0, so just map the string to the same thing. |
| 62 // TODO(brettw) remove support for the old Font API. | 57 // TODO(brettw) remove support for the old Font API. |
| 63 PROXIED_IFACE(PPB_Instance, PPB_FONT_DEV_INTERFACE_0_6, | 58 PROXIED_IFACE(PPB_Instance, PPB_FONT_DEV_INTERFACE_0_6, |
| 64 PPB_BrowserFont_Trusted_1_0) | 59 PPB_BrowserFont_Trusted_1_0) |
| 65 #endif // !defined(OS_NACL) | 60 #endif // !defined(OS_NACL) |
| 66 | 61 |
| 67 #include "ppapi/thunk/interfaces_postamble.h" | 62 #include "ppapi/thunk/interfaces_postamble.h" |
| OLD | NEW |