Documentation Archive Developer
Search

WebKit Changes

WebKit

Framework Architectures
Fromi386,ppc,x86_64
Toi386,x86_64
DOMBlob.h
Added DOMBlob
DOMCSSRule.h
Removed DOM_VARIABLES_RULE
DOMDocument.h
Added -[DOMDocument AVAILABLE_IN_WEBKIT_VERSION_4_0] (no architecture available)
DOMFile.h
Modified DOMFile
Superclass
FromDOMObject
ToDOMBlob

DOMProgressEvent.h
Declaration
From@property(readonly) unsigned total
To@property(readonly) unsigned long long total

Modified -[DOMProgressEvent initProgressEvent:canBubbleArg:cancelableArg:lengthComputableArg:loadedArg:totalArg:]
Declaration
From- (void)initProgressEvent:(NSString *)typeArg canBubbleArg:(BOOL)canBubbleArg cancelableArg:(BOOL)cancelableArg lengthComputableArg:(BOOL)lengthComputableArg loadedArg:(unsigned)loadedArg totalArg:(unsigned)totalArg
To- (void)initProgressEvent:(NSString *)typeArg canBubbleArg:(BOOL)canBubbleArg cancelableArg:(BOOL)cancelableArg lengthComputableArg:(BOOL)lengthComputableArg loadedArg:(unsigned long long)loadedArg totalArg:(unsigned long long)totalArg

Declaration
From@property(readonly) unsigned loaded
To@property(readonly) unsigned long long loaded

npapi.h
Removed NPPVpluginPrivateModeBool
Removed #def adjustCursorEvent
Removed #def getFocusEvent
Removed int16
Removed int32
Removed #def loseFocusEvent
Removed uint16 (no architecture available)
Removed uint32 (no architecture available)
Added NPEventType
Added NPEventType_AdjustCursorEvent
Added NPEventType_ClippingChangedEvent
Added NPEventType_GetFocusEvent
Added NPEventType_LoseFocusEvent
Added NPEventType_MenuCommandEvent
Added NPEventType_ScrollingBeginsEvent
Added NPEventType_ScrollingEndsEvent
Added NPImageExpose
Added NPNVGtk12
Added NPNVGtk2
Added NPNVSupportsWindowlessLocal (no architecture available)
Added NPPVpluginWindowlessLocalBool (no architecture available)
Added NPSize
Added #def NPVERS_HAS_ADVANCED_KEY_HANDLING
Added #def NPVERS_HAS_CLEAR_SITE_DATA
Added #def NPVERS_HAS_URL_REDIRECT_HANDLING
Added #def NP_CLEAR_ALL
Added #def NP_CLEAR_CACHE
Added #def NP_INFO_CompanyName
Added #def NP_INFO_FileDescription
Added #def NP_INFO_FileExtents
Added #def NP_INFO_FileOpenName
Added #def NP_INFO_FileVersion
Added #def NP_INFO_InternalName
Added #def NP_INFO_LegalCopyright
Added #def NP_INFO_MIMEType
Added #def NP_INFO_OriginalFilename
Added #def NP_INFO_ProductName
Added #def NP_INFO_ProductVersion
Added #def kNPEventHandled
Added #def kNPEventNotHandled
Added #def kNPEventStartIME
Declaration
Fromint32 NPP_WriteReady ( NPP instance, NPStream *stream);
Toint32_t NPP_WriteReady ( NPP instance, NPStream *stream);

Declaration
Fromuint32 NPN_ScheduleTimer ( NPP instance, uint32 interval, NPBool repeat, void (*timerFunc)(NPP npp, uint32 timerID));
Touint32_t NPN_ScheduleTimer ( NPP instance, uint32_t interval, NPBool repeat, void (*timerFunc)(NPP npp, uint32_t timerID));

Modified NPN_PostURL()
Declaration
FromNPError NPN_PostURL ( NPP instance, const char *url, const char *target, uint32 len, const char *buf, NPBool file);
ToNPError NPN_PostURL ( NPP instance, const char *url, const char *target, uint32_t len, const char *buf, NPBool file);

Declaration
FromNPError NPP_NewStream ( NPP instance, NPMIMEType type, NPStream *stream, NPBool seekable, uint16 *stype);
ToNPError NPP_NewStream ( NPP instance, NPMIMEType type, NPStream *stream, NPBool seekable, uint16_t *stype);

Modified NPP_New()
Declaration
FromNPError NPP_New ( NPMIMEType pluginType, NPP instance, uint16 mode, int16 argc, char *argn[], char *argv[], NPSavedData *saved);
ToNPError NPP_New ( NPMIMEType pluginType, NPP instance, uint16_t mode, int16_t argc, char *argn[], char *argv[], NPSavedData *saved);

Declaration
Fromint16 NPP_HandleEvent ( NPP instance, void *event);
Toint16_t NPP_HandleEvent ( NPP instance, void *event);

Declaration
Fromvoid NPN_UnscheduleTimer ( NPP instance, uint32 timerID);
Tovoid NPN_UnscheduleTimer ( NPP instance, uint32_t timerID);

Modified NPEvent
32/64-bitArchitectures
From32-onlyi386,ppc
ToBothi386,x86_64

Declaration
Fromuint32 NPN_MemFlush ( uint32 size);
Touint32_t NPN_MemFlush ( uint32_t size);

Declaration
Fromvoid * NPN_MemAlloc ( uint32 size);
Tovoid * NPN_MemAlloc ( uint32_t size);

Declaration
FromNPError NPN_GetValueForURL ( NPP instance, NPNURLVariable variable, const char *url, char **value, uint32 *len);
ToNPError NPN_GetValueForURL ( NPP instance, NPNURLVariable variable, const char *url, char **value, uint32_t *len);

Modified NPN_Write()
Declaration
Fromint32 NPN_Write ( NPP instance, NPStream *stream, int32 len, void *buffer);
Toint32_t NPN_Write ( NPP instance, NPStream *stream, int32_t len, void *buffer);

Modified NPP_Write()
Declaration
Fromint32 NPP_Write ( NPP instance, NPStream *stream, int32 offset, int32 len, void *buffer);
Toint32_t NPP_Write ( NPP instance, NPStream *stream, int32_t offset, int32_t len, void *buffer);

Declaration
FromNPError NPN_PostURLNotify ( NPP instance, const char *url, const char *target, uint32 len, const char *buf, NPBool file, void *notifyData);
ToNPError NPN_PostURLNotify ( NPP instance, const char *url, const char *target, uint32_t len, const char *buf, NPBool file, void *notifyData);

Declaration
FromNPError NPN_SetValueForURL ( NPP instance, NPNURLVariable variable, const char *url, const char *value, uint32 len);
ToNPError NPN_SetValueForURL ( NPP instance, NPNURLVariable variable, const char *url, const char *value, uint32_t len);

Declaration
FromNPError NPN_GetAuthenticationInfo ( NPP instance, const char *protocol, const char *host, int32 port, const char *scheme, const char *realm, char **username, uint32 *ulen, char **password, uint32 *plen);
ToNPError NPN_GetAuthenticationInfo ( NPP instance, const char *protocol, const char *host, int32_t port, const char *scheme, const char *realm, char **username, uint32_t *ulen, char **password, uint32_t *plen);

npruntime.h
Declaration
Fromvoid NPN_ReleaseObject ( NPObject *obj);
Tovoid NPN_ReleaseObject ( NPObject *npobj);

Declaration
Fromvoid NPN_SetException ( NPObject *obj, const NPUTF8 *message);
Tovoid NPN_SetException ( NPObject *npobj, const NPUTF8 *message);

Declaration
FromNPObject * NPN_RetainObject ( NPObject *obj);
ToNPObject * NPN_RetainObject ( NPObject *npobj);

nptypes.h
Added bool (no architecture available)
Added #def bool
Added #def false
Added int16_t (no architecture available)
Added int32_t (no architecture available)
Added int64_t (no architecture available)
Added #def true
Added uint16_t (no architecture available)
Added uint32_t (no architecture available)
Added uint64_t (no architecture available)