Title: [109786] trunk/WebKitLibraries
Revision
109786
Author
wei...@apple.com
Date
2012-03-05 13:00:02 -0800 (Mon, 05 Mar 2012)

Log Message

Update WebKitSystemInterface for WKCAContext additions.

* WebKitSystemInterface.h:
* libWebKitSystemInterfaceLeopard.a:
* libWebKitSystemInterfaceLion.a:
* libWebKitSystemInterfaceSnowLeopard.a:

Modified Paths

Diff

Modified: trunk/WebKitLibraries/ChangeLog (109785 => 109786)


--- trunk/WebKitLibraries/ChangeLog	2012-03-05 20:44:00 UTC (rev 109785)
+++ trunk/WebKitLibraries/ChangeLog	2012-03-05 21:00:02 UTC (rev 109786)
@@ -1,3 +1,12 @@
+2012-03-05  Sam Weinig  <s...@webkit.org>
+
+        Update WebKitSystemInterface for WKCAContext additions.
+
+        * WebKitSystemInterface.h:
+        * libWebKitSystemInterfaceLeopard.a:
+        * libWebKitSystemInterfaceLion.a:
+        * libWebKitSystemInterfaceSnowLeopard.a:
+
 2012-03-03  Hans Wennborg  <h...@chromium.org>
 
         Implement Speech _javascript_ API

Modified: trunk/WebKitLibraries/WebKitSystemInterface.h (109785 => 109786)


--- trunk/WebKitLibraries/WebKitSystemInterface.h	2012-03-05 20:44:00 UTC (rev 109785)
+++ trunk/WebKitLibraries/WebKitSystemInterface.h	2012-03-05 21:00:02 UTC (rev 109786)
@@ -337,6 +337,16 @@
 
 #if MAC_OS_X_VERSION_MIN_REQUIRED >= 1070
 void WKCALayerEnumerateRectsBeingDrawnWithBlock(CALayer *layer, CGContextRef context, void (^block)(CGRect rect));
+
+typedef struct __WKCAContextRef *WKCAContextRef;
+
+WKCAContextRef WKCAContextMakeRemoteWithServerPort(mach_port_t port);
+WKCAContextRef WKCAContextMakeRemoteForWindowServer(void);
+void WKCAContextInvalidate(WKCAContextRef);
+uint32_t WKCAContextGetContextId(WKCAContextRef);
+void WKCAContextSetLayer(WKCAContextRef, CALayer *);
+CALayer *WKCAContextGetLayer(WKCAContextRef);
+
 #endif
 
 @class CARenderer;
@@ -471,6 +481,10 @@
 bool WKExecutableWasLinkedOnOrBeforeLion(void);
 #endif
 
+#if MAC_OS_X_VERSION_MIN_REQUIRED >= 1070
+void WKCGPathAddRoundedRect(CGMutablePathRef path, const CGAffineTransform* matrix, CGRect rect, CGFloat cornerWidth, CGFloat cornerHeight);
+#endif
+
 #ifdef __cplusplus
 }
 #endif

Modified: trunk/WebKitLibraries/libWebKitSystemInterfaceLeopard.a


(Binary files differ)

Modified: trunk/WebKitLibraries/libWebKitSystemInterfaceLion.a


(Binary files differ)

Modified: trunk/WebKitLibraries/libWebKitSystemInterfaceSnowLeopard.a


(Binary files differ)
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to