| Index: webkit/default_plugin/plugin_main.h
|
| diff --git a/webkit/default_plugin/plugin_main.h b/webkit/default_plugin/plugin_main.h
|
| index dc1e07136d8e589c9f6de4d0b07e9fc798e30da2..50f30096ce5351ce14b5c1804d8fa76d987b3d19 100644
|
| --- a/webkit/default_plugin/plugin_main.h
|
| +++ b/webkit/default_plugin/plugin_main.h
|
| @@ -13,22 +13,22 @@ namespace default_plugin {
|
| extern NPNetscapeFuncs* g_browser;
|
|
|
| // Standard NPAPI functions.
|
| -NPError NPP_New(NPMIMEType pluginType, NPP instance, uint16 mode, int16 argc,
|
| +NPError NPP_New(NPMIMEType pluginType, NPP instance, uint16_t mode, int16_t argc,
|
| char* argn[], char* argv[], NPSavedData* saved);
|
| NPError NPP_Destroy(NPP instance, NPSavedData** save);
|
| NPError NPP_SetWindow(NPP instance, NPWindow* window);
|
| NPError NPP_NewStream(NPP instance, NPMIMEType type, NPStream* stream,
|
| - NPBool seekable, uint16* stype);
|
| + NPBool seekable, uint16_t* stype);
|
| NPError NPP_DestroyStream(NPP instance, NPStream* stream, NPReason reason);
|
| -int32 NPP_WriteReady(NPP instance, NPStream* stream);
|
| -int32 NPP_Write(NPP instance, NPStream* stream, int32 offset, int32 len,
|
| +int32_t NPP_WriteReady(NPP instance, NPStream* stream);
|
| +int32_t NPP_Write(NPP instance, NPStream* stream, int32_t offset, int32_t len,
|
| void* buffer);
|
| #if defined(OS_POSIX) && !defined(OS_MACOSX)
|
| NPError NPP_GetValue(NPP instance, NPPVariable variable, void* value);
|
| #endif
|
| void NPP_URLNotify(NPP instance, const char* url, NPReason reason,
|
| void* notifyData);
|
| -int16 NPP_HandleEvent(NPP instance, void* event);
|
| +int16_t NPP_HandleEvent(NPP instance, void* event);
|
|
|
| #if defined(OS_POSIX) && !defined(OS_MACOSX)
|
| NPError API_CALL NP_Initialize(NPNetscapeFuncs* funcs, NPPluginFuncs* p_funcs);
|
|
|