[webkit-changes] cvs commit: WebKitLibraries ChangeLog WebKitSystemInterface.h libWebKitSystemInterface.a

Darin darin at opensource.apple.com
Sun Sep 4 12:53:35 PDT 2005


darin       05/09/04 12:53:35

  Modified:    .        ChangeLog WebKitSystemInterface.h
                        libWebKitSystemInterface.a
  Log:
          * WebKitSystemInterface.h: Update to latest
          * libWebKitSystemInterface.a: Ditto.
  
  Revision  Changes    Path
  1.15      +5 -0      WebKitLibraries/ChangeLog
  
  Index: ChangeLog
  ===================================================================
  RCS file: /cvs/root/WebKitLibraries/ChangeLog,v
  retrieving revision 1.14
  retrieving revision 1.15
  diff -u -r1.14 -r1.15
  --- ChangeLog	7 Aug 2005 18:52:14 -0000	1.14
  +++ ChangeLog	4 Sep 2005 19:53:34 -0000	1.15
  @@ -1,3 +1,8 @@
  +2005-09-04  Darin Adler  <darin at apple.com>
  +
  +        * WebKitSystemInterface.h: Update to latest
  +        * libWebKitSystemInterface.a: Ditto.
  +
   2005-08-07  Darin Adler  <darin at apple.com>
   
           * libWebKitSystemInterface.a: Universal binary.
  
  
  
  1.15      +22 -19    WebKitLibraries/WebKitSystemInterface.h
  
  Index: WebKitSystemInterface.h
  ===================================================================
  RCS file: /cvs/root/WebKitLibraries/WebKitSystemInterface.h,v
  retrieving revision 1.14
  retrieving revision 1.15
  diff -u -r1.14 -r1.15
  --- WebKitSystemInterface.h	7 Aug 2005 18:52:14 -0000	1.14
  +++ WebKitSystemInterface.h	4 Sep 2005 19:53:34 -0000	1.15
  @@ -32,8 +32,8 @@
   
   CFStringEncoding WKGetWebDefaultCFStringEncoding(void);
   
  -float WKSecondsSinceLastInputEvent();
  -CFStringRef WKPreferRGB32Key();
  +float WKSecondsSinceLastInputEvent(void);
  +CFStringRef WKPreferRGB32Key(void);
   
   void WKSetNSURLConnectionDefersCallbacks(NSURLConnection *connection, BOOL defers);
   float WKSecondsSinceLastInputEvent(void);
  @@ -47,26 +47,26 @@
   
   typedef id WKNSURLConnectionDelegateProxyPtr;
   
  -WKNSURLConnectionDelegateProxyPtr WKCreateNSURLConnectionDelegateProxy();
  +WKNSURLConnectionDelegateProxyPtr WKCreateNSURLConnectionDelegateProxy(void);
   
  -void WKDisableCGDeferredUpdates();
  +void WKDisableCGDeferredUpdates(void);
   
   Class WKNSURLProtocolClassForReqest(NSURLRequest *request);
   
  -unsigned WKGetNSAutoreleasePoolCount();
  +unsigned WKGetNSAutoreleasePoolCount(void);
   
  -NSString *WKMouseMovedNotification();
  -BOOL WKMouseIsDown();
  +NSString *WKMouseMovedNotification(void);
  +BOOL WKMouseIsDown(void);
   void WKSetNSWindowShouldPostEventNotifications(NSWindow *window, BOOL post);
   
  -CFTypeID WKGetAXTextMarkerTypeID();
  -CFTypeID WKGetAXTextMarkerRangeTypeID();
  +CFTypeID WKGetAXTextMarkerTypeID(void);
  +CFTypeID WKGetAXTextMarkerRangeTypeID(void);
   CFTypeRef WKCreateAXTextMarker(const void *bytes, size_t len);
   BOOL WKGetBytesFromAXTextMarker(CFTypeRef textMarker, void *bytes, size_t length);
   CFTypeRef WKCreateAXTextMarkerRange(CFTypeRef start, CFTypeRef end);
   CFTypeRef WKCopyAXTextMarkerRangeStart(CFTypeRef range);
   CFTypeRef WKCopyAXTextMarkerRangeEnd(CFTypeRef range);
  -void WKAccessibilityHandleFocusChanged();
  +void WKAccessibilityHandleFocusChanged(void);
   AXUIElementRef WKCreateAXUIElementRef(id element);
   void WKUnregisterUniqueIdForElement(id element);
   
  @@ -78,19 +78,19 @@
   void WKSignalCFReadStreamError(CFReadStreamRef stream, CFStreamError *error);
   
   CFReadStreamRef WKCreateCustomCFReadStream(void *(*formCreate)(CFReadStreamRef, void *), 
  -										   void (*formFinalize)(CFReadStreamRef, void *), 
  -										   Boolean (*formOpen)(CFReadStreamRef, CFStreamError *, Boolean *, void *), 
  -										   CFIndex (*formRead)(CFReadStreamRef, UInt8 *, CFIndex, CFStreamError *, Boolean *, void *), 
  -										   Boolean (*formCanRead)(CFReadStreamRef, void *), 
  -										   void (*formClose)(CFReadStreamRef, void *), 
  -										   void (*formSchedule)(CFReadStreamRef, CFRunLoopRef, CFStringRef, void *), 
  -										   void (*formUnschedule)(CFReadStreamRef, CFRunLoopRef, CFStringRef, void *),
  -										   void *context);
  +    void (*formFinalize)(CFReadStreamRef, void *), 
  +    Boolean (*formOpen)(CFReadStreamRef, CFStreamError *, Boolean *, void *), 
  +    CFIndex (*formRead)(CFReadStreamRef, UInt8 *, CFIndex, CFStreamError *, Boolean *, void *), 
  +    Boolean (*formCanRead)(CFReadStreamRef, void *), 
  +    void (*formClose)(CFReadStreamRef, void *), 
  +    void (*formSchedule)(CFReadStreamRef, CFRunLoopRef, CFStringRef, void *), 
  +    void (*formUnschedule)(CFReadStreamRef, CFRunLoopRef, CFStringRef, void *),
  +    void *context);
   
   void WKSetFocusRingStyle(NSFocusRingPlacement placement, int radius, NSColor *color);
   void WKSetDragImage(NSImage *image, NSPoint offset);
   
  -void WKSendUserChangeNotifications();
  +void WKSendUserChangeNotifications(void);
   BOOL WKConvertNSEventToCarbonEvent(EventRecord *carbonEvent, NSEvent *cocoaEvent);
   void WKSendKeyEventToTSM(NSEvent *theEvent);
   void WKCallDrawingNotification(CGrafPtr port, Rect *bounds);
  @@ -123,3 +123,6 @@
   NSEvent *WKCreateNSEventWithCarbonClickEvent(EventRef inEvent, WindowRef windowRef);
   
   BOOL WKExecutableLinkedInTigerOrEarlier(void);
  +
  +CGContextRef WKNSWindowOverrideCGContext(NSWindow *, CGContextRef);
  +void WKNSWindowRestoreCGContext(NSWindow *, CGContextRef);
  
  
  
  1.16      +148 -154  WebKitLibraries/libWebKitSystemInterface.a
  
  	<<Binary file>>
  
  



More information about the webkit-changes mailing list