| 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 #ifndef PPAPI_THUNK_THUNK_H_ | 5 #ifndef PPAPI_THUNK_THUNK_H_ |
| 6 #define PPAPI_THUNK_THUNK_H_ | 6 #define PPAPI_THUNK_THUNK_H_ |
| 7 | 7 |
| 8 #include "ppapi/c/ppb_graphics_3d.h" | 8 #include "ppapi/c/ppb_graphics_3d.h" |
| 9 #include "ppapi/c/private/ppb_flash_clipboard.h" | 9 #include "ppapi/c/private/ppb_flash_clipboard.h" |
| 10 #include "ppapi/c/private/ppb_flash_menu.h" | 10 #include "ppapi/c/private/ppb_flash_menu.h" |
| (...skipping 20 matching lines...) Expand all Loading... |
| 31 // | 31 // |
| 32 #define IFACE(api_name, interface_name, InterfaceType) \ | 32 #define IFACE(api_name, interface_name, InterfaceType) \ |
| 33 struct InterfaceType; \ | 33 struct InterfaceType; \ |
| 34 namespace ppapi { namespace thunk { \ | 34 namespace ppapi { namespace thunk { \ |
| 35 PPAPI_THUNK_EXPORT const InterfaceType* Get##InterfaceType##_Thunk(); \ | 35 PPAPI_THUNK_EXPORT const InterfaceType* Get##InterfaceType##_Thunk(); \ |
| 36 } } | 36 } } |
| 37 #define PROXIED_IFACE IFACE | 37 #define PROXIED_IFACE IFACE |
| 38 #define UNPROXIED_IFACE IFACE | 38 #define UNPROXIED_IFACE IFACE |
| 39 | 39 |
| 40 #include "ppapi/thunk/interfaces_ppb_private.h" | 40 #include "ppapi/thunk/interfaces_ppb_private.h" |
| 41 #include "ppapi/thunk/interfaces_ppb_private_flash.h" |
| 41 #include "ppapi/thunk/interfaces_ppb_public_stable.h" | 42 #include "ppapi/thunk/interfaces_ppb_public_stable.h" |
| 42 #include "ppapi/thunk/interfaces_ppb_public_dev.h" | 43 #include "ppapi/thunk/interfaces_ppb_public_dev.h" |
| 43 | 44 |
| 44 #undef UNPROXIED_IFACE | 45 #undef UNPROXIED_IFACE |
| 45 #undef PROXIED_IFACE | 46 #undef PROXIED_IFACE |
| 46 #undef IFACE | 47 #undef IFACE |
| 47 | 48 |
| 48 namespace ppapi { | 49 namespace ppapi { |
| 49 namespace thunk { | 50 namespace thunk { |
| 50 | 51 |
| (...skipping 29 matching lines...) Expand all Loading... |
| 80 GetPPB_TCPSocket_Private_0_3_Thunk(); | 81 GetPPB_TCPSocket_Private_0_3_Thunk(); |
| 81 PPAPI_THUNK_EXPORT const PPB_UDPSocket_Private_0_2* | 82 PPAPI_THUNK_EXPORT const PPB_UDPSocket_Private_0_2* |
| 82 GetPPB_UDPSocket_Private_0_2_Thunk(); | 83 GetPPB_UDPSocket_Private_0_2_Thunk(); |
| 83 PPAPI_THUNK_EXPORT const PPB_URLLoaderTrusted_0_3* | 84 PPAPI_THUNK_EXPORT const PPB_URLLoaderTrusted_0_3* |
| 84 GetPPB_URLLoaderTrusted_0_3_Thunk(); | 85 GetPPB_URLLoaderTrusted_0_3_Thunk(); |
| 85 | 86 |
| 86 } // namespace thunk | 87 } // namespace thunk |
| 87 } // namespace ppapi | 88 } // namespace ppapi |
| 88 | 89 |
| 89 #endif // PPAPI_THUNK_THUNK_H_ | 90 #endif // PPAPI_THUNK_THUNK_H_ |
| OLD | NEW |