Modified: trunk/WebKitLibraries/ChangeLog (140875 => 140876)
--- trunk/WebKitLibraries/ChangeLog 2013-01-26 00:10:46 UTC (rev 140875)
+++ trunk/WebKitLibraries/ChangeLog 2013-01-26 00:19:49 UTC (rev 140876)
@@ -1,3 +1,11 @@
+2013-01-25 Andy Estes <[email protected]>
+
+ Update WKSI header and libraries after r140875.
+
+ * WebKitSystemInterface.h:
+ * libWebKitSystemInterfaceLion.a:
+ * libWebKitSystemInterfaceMountainLion.a:
+
2013-01-24 Brent Fulgham <[email protected]>
Get WTF compiling in VS2010 (32bit)
Modified: trunk/WebKitLibraries/WebKitSystemInterface.h (140875 => 140876)
--- trunk/WebKitLibraries/WebKitSystemInterface.h 2013-01-26 00:10:46 UTC (rev 140875)
+++ trunk/WebKitLibraries/WebKitSystemInterface.h 2013-01-26 00:19:49 UTC (rev 140876)
@@ -238,8 +238,8 @@
typedef const struct __CFURLStorageSession* CFURLStorageSessionRef;
CFURLStorageSessionRef WKCreatePrivateStorageSession(CFStringRef);
-NSURLRequest *WKCopyRequestWithStorageSession(CFURLStorageSessionRef, NSURLRequest*);
-NSCachedURLResponse *WKCachedResponseForRequest(CFURLStorageSessionRef, NSURLRequest*);
+NSURLRequest *WKCopyRequestWithStorageSession(CFURLStorageSessionRef, NSURLRequest *);
+NSCachedURLResponse *WKCachedResponseForRequest(CFURLStorageSessionRef, NSURLRequest *);
void WKSetRequestStorageSession(CFURLStorageSessionRef, CFMutableURLRequestRef);
typedef struct OpaqueCFHTTPCookieStorage* CFHTTPCookieStorageRef;
@@ -358,6 +358,7 @@
CALayer *WKCAContextGetLayer(WKCAContextRef);
void WKCAContextSetColorSpace(WKCAContextRef, CGColorSpaceRef);
CGColorSpaceRef WKCAContextGetColorSpace(WKCAContextRef);
+void WKCABackingStoreCollectBlocking(void);
void WKCALayerEnumerateRectsBeingDrawnWithBlock(CALayer *layer, CGContextRef context, void (^block)(CGRect rect));
@@ -425,7 +426,6 @@
typedef enum {
WKSandboxExtensionTypeReadOnly,
- WKSandboxExtensionTypeWriteOnly,
WKSandboxExtensionTypeReadWrite,
} WKSandboxExtensionType;
typedef struct __WKSandboxExtension *WKSandboxExtensionRef;
@@ -474,10 +474,10 @@
BOOL WKFilterIsManagedSession(void);
WebFilterEvaluator *WKFilterCreateInstance(NSURLResponse *);
-void WKFilterRelease(WebFilterEvaluator *);
+BOOL WKFilterIsBuffering(WebFilterEvaluator *);
BOOL WKFilterWasBlocked(WebFilterEvaluator *);
-const char* WKFilterAddData(WebFilterEvaluator *, const char* data, int* length);
-const char* WKFilterDataComplete(WebFilterEvaluator *, int* length);
+NSData *WKFilterAddData(WebFilterEvaluator *, NSData *);
+NSData *WKFilterDataComplete(WebFilterEvaluator *);
CGFloat WKNSElasticDeltaForTimeDelta(CGFloat initialPosition, CGFloat initialVelocity, CGFloat elapsedTime);
CGFloat WKNSElasticDeltaForReboundDelta(CGFloat delta);