Diff
Modified: trunk/Source/WebCore/ChangeLog (204567 => 204568)
--- trunk/Source/WebCore/ChangeLog 2016-08-17 19:58:00 UTC (rev 204567)
+++ trunk/Source/WebCore/ChangeLog 2016-08-17 20:22:24 UTC (rev 204568)
@@ -1,5 +1,15 @@
2016-08-17 Anders Carlsson <[email protected]>
+ Remove a couple of unused WKSI function pointers
+ https://bugs.webkit.org/show_bug.cgi?id=160946
+
+ Reviewed by Dan Bernstein.
+
+ * platform/mac/WebCoreSystemInterface.h:
+ * platform/mac/WebCoreSystemInterface.mm:
+
+2016-08-17 Anders Carlsson <[email protected]>
+
Move WKSignedPublicKeyAndChallengeString into WebCore and make it proper C++
https://bugs.webkit.org/show_bug.cgi?id=160945
Modified: trunk/Source/WebCore/platform/mac/WebCoreSystemInterface.h (204567 => 204568)
--- trunk/Source/WebCore/platform/mac/WebCoreSystemInterface.h 2016-08-17 19:58:00 UTC (rev 204567)
+++ trunk/Source/WebCore/platform/mac/WebCoreSystemInterface.h 2016-08-17 20:22:24 UTC (rev 204568)
@@ -118,7 +118,6 @@
// In alphabetical order.
-extern void (*wkAdvanceDefaultButtonPulseAnimation)(NSButtonCell *);
extern void (*wkCALayerEnumerateRectsBeingDrawnWithBlock)(CALayer *, CGContextRef, void (^block)(CGRect rect));
typedef enum {
@@ -139,7 +138,6 @@
extern void (*wkDrawMediaSliderTrack)(CGContextRef context, CGRect rect, float timeLoaded, float currentTime,
float duration, unsigned state);
extern void (*wkDrawMediaUIPart)(int part, CGContextRef context, CGRect rect, unsigned state);
-extern CFStringRef (*wkSignedPublicKeyAndChallengeString)(unsigned keySize, CFStringRef challenge, CFStringRef keyDescription);
extern double (*wkGetNSURLResponseCalculatedExpiration)(NSURLResponse *response);
extern BOOL (*wkGetNSURLResponseMustRevalidate)(NSURLResponse *response);
extern void (*wkGetWheelEventDeltas)(NSEvent*, float* deltaX, float* deltaY, BOOL* continuous);
Modified: trunk/Source/WebCore/platform/mac/WebCoreSystemInterface.mm (204567 => 204568)
--- trunk/Source/WebCore/platform/mac/WebCoreSystemInterface.mm 2016-08-17 19:58:00 UTC (rev 204567)
+++ trunk/Source/WebCore/platform/mac/WebCoreSystemInterface.mm 2016-08-17 20:22:24 UTC (rev 204568)
@@ -30,7 +30,6 @@
#import <Foundation/Foundation.h>
-void (*wkAdvanceDefaultButtonPulseAnimation)(NSButtonCell *);
void (*wkCALayerEnumerateRectsBeingDrawnWithBlock)(CALayer *, CGContextRef context, void (^block)(CGRect rect));
bool (*wkCGContextDrawsWithCorrectShadowOffsets)(CGContextRef);
CGPatternRef (*wkCGPatternCreateWithImageAndTransform)(CGImageRef, CGAffineTransform, int);
@@ -48,7 +47,6 @@
NSControl *(*wkCreateMediaUIControl)(int);
void (*wkWindowSetAlpha)(NSWindow *, float);
void (*wkWindowSetScaledFrame)(NSWindow *, NSRect, NSRect);
-CFStringRef (*wkSignedPublicKeyAndChallengeString)(unsigned keySize, CFStringRef challenge, CFStringRef keyDescription);
NSTimeInterval (*wkGetNSURLResponseCalculatedExpiration)(NSURLResponse *response);
BOOL (*wkGetNSURLResponseMustRevalidate)(NSURLResponse *response);
void (*wkGetWheelEventDeltas)(NSEvent*, float* deltaX, float* deltaY, BOOL* continuous);
Modified: trunk/Source/WebKit/mac/ChangeLog (204567 => 204568)
--- trunk/Source/WebKit/mac/ChangeLog 2016-08-17 19:58:00 UTC (rev 204567)
+++ trunk/Source/WebKit/mac/ChangeLog 2016-08-17 20:22:24 UTC (rev 204568)
@@ -1,3 +1,13 @@
+2016-08-17 Anders Carlsson <[email protected]>
+
+ Remove a couple of unused WKSI function pointers
+ https://bugs.webkit.org/show_bug.cgi?id=160946
+
+ Reviewed by Dan Bernstein.
+
+ * WebCoreSupport/WebSystemInterface.mm:
+ (InitWebCoreSystemInterface): Deleted.
+
2016-08-16 Daniel Bates <[email protected]>
WKSI static library should be named by major iOS revision, not individual updates
Modified: trunk/Source/WebKit/mac/WebCoreSupport/WebSystemInterface.mm (204567 => 204568)
--- trunk/Source/WebKit/mac/WebCoreSupport/WebSystemInterface.mm 2016-08-17 19:58:00 UTC (rev 204567)
+++ trunk/Source/WebKit/mac/WebCoreSupport/WebSystemInterface.mm 2016-08-17 20:22:24 UTC (rev 204568)
@@ -42,9 +42,6 @@
if (didInit)
return;
-#if !PLATFORM(IOS)
- INIT(AdvanceDefaultButtonPulseAnimation);
-#endif
INIT(CALayerEnumerateRectsBeingDrawnWithBlock);
INIT(CGPatternCreateWithImageAndTransform);
#if !PLATFORM(IOS)
@@ -61,7 +58,6 @@
#endif
INIT(GetWebDefaultCFStringEncoding);
#if !PLATFORM(IOS)
- INIT(SignedPublicKeyAndChallengeString);
INIT(GetWheelEventDeltas);
INIT(GetNSEventKeyChar);
INIT(HitTestMediaUIPart);
Modified: trunk/Source/WebKit2/ChangeLog (204567 => 204568)
--- trunk/Source/WebKit2/ChangeLog 2016-08-17 19:58:00 UTC (rev 204567)
+++ trunk/Source/WebKit2/ChangeLog 2016-08-17 20:22:24 UTC (rev 204568)
@@ -1,3 +1,13 @@
+2016-08-17 Anders Carlsson <[email protected]>
+
+ Remove a couple of unused WKSI function pointers
+ https://bugs.webkit.org/show_bug.cgi?id=160946
+
+ Reviewed by Dan Bernstein.
+
+ * WebProcess/WebCoreSupport/mac/WebSystemInterface.mm:
+ (InitWebCoreSystemInterface): Deleted.
+
2016-08-17 Dan Bernstein <[email protected]>
[Cocoa] -[NSString isEqualToString:] returns NO for any WKNSString argument
Modified: trunk/Source/WebKit2/WebProcess/WebCoreSupport/mac/WebSystemInterface.mm (204567 => 204568)
--- trunk/Source/WebKit2/WebProcess/WebCoreSupport/mac/WebSystemInterface.mm 2016-08-17 19:58:00 UTC (rev 204567)
+++ trunk/Source/WebKit2/WebProcess/WebCoreSupport/mac/WebSystemInterface.mm 2016-08-17 20:22:24 UTC (rev 204568)
@@ -36,9 +36,6 @@
static dispatch_once_t initOnce;
dispatch_once(&initOnce, ^{
-#if !PLATFORM(IOS)
- INIT(AdvanceDefaultButtonPulseAnimation);
-#endif
INIT(CALayerEnumerateRectsBeingDrawnWithBlock);
INIT(CGPatternCreateWithImageAndTransform);
#if !PLATFORM(IOS)
@@ -52,7 +49,6 @@
INIT(DrawCellFocusRingWithFrameAtTime);
INIT(DrawMediaSliderTrack);
INIT(DrawMediaUIPart);
- INIT(SignedPublicKeyAndChallengeString);
#endif
INIT(GetWebDefaultCFStringEncoding);
INIT(CGContextIsPDFContext);