| Index: ppapi/native_client/src/untrusted/pnacl_irt_shim/pnacl_shim.c
|
| diff --git a/ppapi/native_client/src/untrusted/pnacl_irt_shim/pnacl_shim.c b/ppapi/native_client/src/untrusted/pnacl_irt_shim/pnacl_shim.c
|
| index c1a4bb9fee316db24f21c5e1af7d9bfb6687c8a6..036d9c6953c1d8bf415c7f12a9ca39ab500cd9c1 100644
|
| --- a/ppapi/native_client/src/untrusted/pnacl_irt_shim/pnacl_shim.c
|
| +++ b/ppapi/native_client/src/untrusted/pnacl_irt_shim/pnacl_shim.c
|
| @@ -25,6 +25,7 @@
|
| #include "ppapi/c/dev/ppb_scrollbar_dev.h"
|
| #include "ppapi/c/dev/ppb_testing_dev.h"
|
| #include "ppapi/c/dev/ppb_text_input_dev.h"
|
| +#include "ppapi/c/dev/ppb_trace_event_dev.h"
|
| #include "ppapi/c/dev/ppb_url_util_dev.h"
|
| #include "ppapi/c/dev/ppb_video_capture_dev.h"
|
| #include "ppapi/c/dev/ppb_video_decoder_dev.h"
|
| @@ -196,6 +197,7 @@ static struct __PnaclWrapperInfo Pnacl_WrapperInfo_PPB_Testing_Dev_0_9;
|
| static struct __PnaclWrapperInfo Pnacl_WrapperInfo_PPB_Testing_Dev_0_91;
|
| static struct __PnaclWrapperInfo Pnacl_WrapperInfo_PPB_TextInput_Dev_0_1;
|
| static struct __PnaclWrapperInfo Pnacl_WrapperInfo_PPB_TextInput_Dev_0_2;
|
| +static struct __PnaclWrapperInfo Pnacl_WrapperInfo_PPB_Trace_Event_Dev_0_1;
|
| static struct __PnaclWrapperInfo Pnacl_WrapperInfo_PPB_URLUtil_Dev_0_6;
|
| static struct __PnaclWrapperInfo Pnacl_WrapperInfo_PPB_VideoCapture_Dev_0_2;
|
| static struct __PnaclWrapperInfo Pnacl_WrapperInfo_PPB_VideoCapture_Dev_0_3;
|
| @@ -1976,6 +1978,8 @@ uint32_t Pnacl_M18_PPB_Testing_Dev_GetLiveVars(struct PP_Var live_vars[], uint32
|
|
|
| /* Not generating wrapper methods for PPB_TextInput_Dev_0_2 */
|
|
|
| +/* Not generating wrapper methods for PPB_Trace_Event_Dev_0_1 */
|
| +
|
| /* Begin wrapper methods for PPB_URLUtil_Dev_0_6 */
|
|
|
| static __attribute__((pnaclcall))
|
| @@ -3969,6 +3973,8 @@ struct PPB_Testing_Dev_0_91 Pnacl_Wrappers_PPB_Testing_Dev_0_91 = {
|
|
|
| /* Not generating wrapper interface for PPB_TextInput_Dev_0_2 */
|
|
|
| +/* Not generating wrapper interface for PPB_Trace_Event_Dev_0_1 */
|
| +
|
| struct PPB_URLUtil_Dev_0_6 Pnacl_Wrappers_PPB_URLUtil_Dev_0_6 = {
|
| .Canonicalize = (struct PP_Var (*)(struct PP_Var url, struct PP_URLComponents_Dev* components))&Pnacl_M17_PPB_URLUtil_Dev_Canonicalize,
|
| .ResolveRelativeToURL = (struct PP_Var (*)(struct PP_Var base_url, struct PP_Var relative_string, struct PP_URLComponents_Dev* components))&Pnacl_M17_PPB_URLUtil_Dev_ResolveRelativeToURL,
|
| @@ -4807,6 +4813,12 @@ static struct __PnaclWrapperInfo Pnacl_WrapperInfo_PPB_TextInput_Dev_0_2 = {
|
| .real_iface = NULL
|
| };
|
|
|
| +static struct __PnaclWrapperInfo Pnacl_WrapperInfo_PPB_Trace_Event_Dev_0_1 = {
|
| + .iface_macro = PPB_TRACE_EVENT_DEV_INTERFACE_0_1,
|
| + .wrapped_iface = NULL /* Still need slot for real_iface */,
|
| + .real_iface = NULL
|
| +};
|
| +
|
| static struct __PnaclWrapperInfo Pnacl_WrapperInfo_PPB_URLUtil_Dev_0_6 = {
|
| .iface_macro = PPB_URLUTIL_DEV_INTERFACE_0_6,
|
| .wrapped_iface = (void *) &Pnacl_Wrappers_PPB_URLUtil_Dev_0_6,
|
| @@ -5227,6 +5239,7 @@ static struct __PnaclWrapperInfo *s_ppb_wrappers[] = {
|
| &Pnacl_WrapperInfo_PPB_Testing_Dev_0_91,
|
| &Pnacl_WrapperInfo_PPB_TextInput_Dev_0_1,
|
| &Pnacl_WrapperInfo_PPB_TextInput_Dev_0_2,
|
| + &Pnacl_WrapperInfo_PPB_Trace_Event_Dev_0_1,
|
| &Pnacl_WrapperInfo_PPB_URLUtil_Dev_0_6,
|
| &Pnacl_WrapperInfo_PPB_VideoCapture_Dev_0_2,
|
| &Pnacl_WrapperInfo_PPB_VideoCapture_Dev_0_3,
|
|
|