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 26 matching lines...) Expand all Loading... |
37 PPB_FileRefPrivate_0_1) | 37 PPB_FileRefPrivate_0_1) |
38 PROXIED_IFACE(PPB_Instance, PPB_FLASHFULLSCREEN_INTERFACE_0_1, | 38 PROXIED_IFACE(PPB_Instance, PPB_FLASHFULLSCREEN_INTERFACE_0_1, |
39 PPB_FlashFullscreen_0_1) | 39 PPB_FlashFullscreen_0_1) |
40 PROXIED_IFACE(PPB_Instance, PPB_FLASHFULLSCREEN_INTERFACE_1_0, | 40 PROXIED_IFACE(PPB_Instance, PPB_FLASHFULLSCREEN_INTERFACE_1_0, |
41 PPB_FlashFullscreen_0_1) | 41 PPB_FlashFullscreen_0_1) |
42 PROXIED_IFACE(NoAPIName, PPB_PDF_INTERFACE, | 42 PROXIED_IFACE(NoAPIName, PPB_PDF_INTERFACE, |
43 PPB_PDF) | 43 PPB_PDF) |
44 | 44 |
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_EXT_CRXFILESYSTEM_PRIVATE_INTERFACE_0_1, |
| 48 PPB_Ext_CrxFileSystem_Private_0_1) |
47 // 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. |
48 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) |
49 | 51 |
50 // Hack to keep font working. The Font 0.6 API is binary compatible with | 52 // Hack to keep font working. The Font 0.6 API is binary compatible with |
51 // BrowserFont 1.0, so just map the string to the same thing. | 53 // BrowserFont 1.0, so just map the string to the same thing. |
52 // TODO(brettw) remove support for the old Font API. | 54 // TODO(brettw) remove support for the old Font API. |
53 PROXIED_IFACE(PPB_Instance, PPB_FONT_DEV_INTERFACE_0_6, | 55 PROXIED_IFACE(PPB_Instance, PPB_FONT_DEV_INTERFACE_0_6, |
54 PPB_BrowserFont_Trusted_1_0) | 56 PPB_BrowserFont_Trusted_1_0) |
55 #endif // !defined(OS_NACL) | 57 #endif // !defined(OS_NACL) |
56 | 58 |
57 #include "ppapi/thunk/interfaces_postamble.h" | 59 #include "ppapi/thunk/interfaces_postamble.h" |
OLD | NEW |