| Index: webkit/glue/plugins/nphostapi.h
|
| diff --git a/webkit/glue/plugins/nphostapi.h b/webkit/glue/plugins/nphostapi.h
|
| index 53c684c45655736cbc36997eb5e6c329c69f8a78..7985a57f9f086f220aefbe97ecc1fcfbeb7e6cbf 100644
|
| --- a/webkit/glue/plugins/nphostapi.h
|
| +++ b/webkit/glue/plugins/nphostapi.h
|
| @@ -213,6 +213,15 @@ typedef uint32 (*NPN_ScheduleTimerPtr)(NPP npp,
|
| void (*timerFunc)(NPP npp, uint32 timerID));
|
| typedef void (*NPN_UnscheduleTimerPtr)(NPP npp,
|
| uint32 timerID);
|
| +typedef NPError (*NPN_PopUpContextMenuPtr)(NPP npp,
|
| + NPMenu* menu);
|
| +typedef NPBool (*NPN_ConvertPointPtr)(NPP npp,
|
| + double sourceX,
|
| + double sourceY,
|
| + NPCoordinateSpace sourceSpace,
|
| + double *destX,
|
| + double *destY,
|
| + NPCoordinateSpace destSpace);
|
|
|
| //
|
| // NPAPI Function table of NPP functions (functions provided by plugin to host)
|
| @@ -293,6 +302,8 @@ typedef struct _NPNetscapeFuncs {
|
| NPN_GetAuthenticationInfoPtr getauthenticationinfo;
|
| NPN_ScheduleTimerPtr scheduletimer;
|
| NPN_UnscheduleTimerPtr unscheduletimer;
|
| + NPN_PopUpContextMenuPtr popupcontextmenu;
|
| + NPN_ConvertPointPtr convertpoint;
|
| } NPNetscapeFuncs;
|
|
|
| //
|
|
|