Title: [233266] trunk
Revision
233266
Author
[email protected]
Date
2018-06-27 11:02:56 -0700 (Wed, 27 Jun 2018)

Log Message

Enable WebKit iOS 12 build
https://bugs.webkit.org/show_bug.cgi?id=187024
<rdar://problem/39759057>

Reviewed by David Kilzer.

Source/WebCore/PAL:

* pal/cf/CoreMediaSoftLink.cpp: Condition some CoreMedia functions on version.
* pal/cf/CoreMediaSoftLink.h: Ditto.
* pal/spi/cocoa/NSXPCConnectionSPI.h: Use XPCSPI.h instead of xpc.h.
* pal/spi/ios/QuickLookSPI.h: QLItem adopts QLPreviewItem.
* pal/spi/ios/SystemPreviewSPI.h: Fix compiler errors.

Source/WebKit:

* Platform/spi/ios/PDFKitSPI.h: Added PDFKit SPI.
* Platform/spi/ios/UIKitSPI.h: Add new UIKit SPI and UICompositingMode enumeration.
* UIProcess/ios/WKPDFView.mm: Use PDFKitSPI header.
* UIProcess/ios/WKSystemPreviewView.mm: Use CoreGraphicsSPI.h.
* UIProcess/ios/fullscreen/WKFullscreenStackView.mm: Use QuartzCoreSPI.h.

Source/WTF:

* wtf/spi/darwin/XPCSPI.h: Add endpoint and connection declarations.

Tools:

* Scripts/configure-xcode-for-ios-development:
(copyMissingHeadersFromSDKToSDKIfNeeded): Copy launch.h into embedded SDKs.

WebKitLibraries:

* WebKitPrivateFrameworkStubs/iOS/12: Added.

Modified Paths

Added Paths

Diff

Modified: trunk/Source/WTF/ChangeLog (233265 => 233266)


--- trunk/Source/WTF/ChangeLog	2018-06-27 17:59:37 UTC (rev 233265)
+++ trunk/Source/WTF/ChangeLog	2018-06-27 18:02:56 UTC (rev 233266)
@@ -1,3 +1,13 @@
+2018-06-27  Jonathan Bedard  <[email protected]>
+
+        Enable WebKit iOS 12 build
+        https://bugs.webkit.org/show_bug.cgi?id=187024
+        <rdar://problem/39759057>
+
+        Reviewed by David Kilzer.
+
+        * wtf/spi/darwin/XPCSPI.h: Add endpoint and connection declarations.
+
 2018-06-25  David Fenton  <[email protected]>
 
         Unreviewed, rolling out r233120.

Modified: trunk/Source/WTF/wtf/spi/darwin/XPCSPI.h (233265 => 233266)


--- trunk/Source/WTF/wtf/spi/darwin/XPCSPI.h	2018-06-27 17:59:37 UTC (rev 233265)
+++ trunk/Source/WTF/wtf/spi/darwin/XPCSPI.h	2018-06-27 18:02:56 UTC (rev 233266)
@@ -35,6 +35,7 @@
 #if OS_OBJECT_USE_OBJC
 OS_OBJECT_DECL(xpc_object);
 typedef xpc_object_t xpc_connection_t;
+typedef xpc_object_t xpc_endpoint_t;
 
 static ALWAYS_INLINE void _xpc_object_validate(xpc_object_t object)
 {
@@ -74,6 +75,7 @@
 #define XPC_TYPE_BOOL (&_xpc_type_bool)
 #define XPC_TYPE_CONNECTION (&_xpc_type_connection)
 #define XPC_TYPE_DICTIONARY (&_xpc_type_dictionary)
+#define XPC_TYPE_ENDPOINT (&_xpc_type_endpoint)
 #define XPC_TYPE_ERROR (&_xpc_type_error)
 #define XPC_TYPE_STRING (&_xpc_type_string)
 
@@ -98,7 +100,9 @@
 
 extern const struct _xpc_type_s _xpc_type_array;
 extern const struct _xpc_type_s _xpc_type_bool;
+extern const struct _xpc_type_s _xpc_type_connection;
 extern const struct _xpc_type_s _xpc_type_dictionary;
+extern const struct _xpc_type_s _xpc_type_endpoint;
 extern const struct _xpc_type_s _xpc_type_error;
 extern const struct _xpc_type_s _xpc_type_string;
 
@@ -132,7 +136,7 @@
 void xpc_dictionary_set_fd(xpc_object_t, const char* key, int fd);
 void xpc_dictionary_set_string(xpc_object_t, const char* key, const char* string);
 void xpc_dictionary_set_uint64(xpc_object_t, const char* key, uint64_t value);
-void xpc_dictionary_set_value(xpc_object_t, const char*key, xpc_object_t value);
+void xpc_dictionary_set_value(xpc_object_t, const char* key, xpc_object_t value);
 xpc_type_t xpc_get_type(xpc_object_t);
 void xpc_main(xpc_connection_handler_t);
 const char* xpc_string_get_string_ptr(xpc_object_t);
@@ -152,6 +156,14 @@
 xpc_object_t xpc_copy_bootstrap(void);
 void xpc_connection_set_oneshot_instance(xpc_connection_t, uuid_t instance);
 
+void xpc_array_append_value(xpc_object_t xarray, xpc_object_t value);
+xpc_object_t xpc_array_get_value(xpc_object_t xarray, size_t index);
+xpc_object_t xpc_data_create(const void* bytes, size_t length);
+const void * xpc_data_get_bytes_ptr(xpc_object_t xdata);
+size_t xpc_data_get_length(xpc_object_t xdata);
+xpc_object_t xpc_dictionary_get_array(xpc_object_t xdict, const char* key);
+
+
 #if OS_OBJECT_USE_OBJC_RETAIN_RELEASE
 #if !defined(xpc_retain)
 #define xpc_retain(object) ({ xpc_object_t _o = (object); _xpc_object_validate(_o); [_o retain]; })

Modified: trunk/Source/WebCore/PAL/ChangeLog (233265 => 233266)


--- trunk/Source/WebCore/PAL/ChangeLog	2018-06-27 17:59:37 UTC (rev 233265)
+++ trunk/Source/WebCore/PAL/ChangeLog	2018-06-27 18:02:56 UTC (rev 233266)
@@ -1,3 +1,17 @@
+2018-06-27  Jonathan Bedard  <[email protected]>
+
+        Enable WebKit iOS 12 build
+        https://bugs.webkit.org/show_bug.cgi?id=187024
+        <rdar://problem/39759057>
+
+        Reviewed by David Kilzer.
+
+        * pal/cf/CoreMediaSoftLink.cpp: Condition some CoreMedia functions on version.
+        * pal/cf/CoreMediaSoftLink.h: Ditto.
+        * pal/spi/cocoa/NSXPCConnectionSPI.h: Use XPCSPI.h instead of xpc.h.
+        * pal/spi/ios/QuickLookSPI.h: QLItem adopts QLPreviewItem.
+        * pal/spi/ios/SystemPreviewSPI.h: Fix compiler errors.
+
 2018-06-26  Wenson Hsieh  <[email protected]>
 
         [iPad apps on macOS] Unable to interact with video elements that have started playing

Modified: trunk/Source/WebCore/PAL/pal/cf/CoreMediaSoftLink.cpp (233265 => 233266)


--- trunk/Source/WebCore/PAL/pal/cf/CoreMediaSoftLink.cpp	2018-06-27 17:59:37 UTC (rev 233265)
+++ trunk/Source/WebCore/PAL/pal/cf/CoreMediaSoftLink.cpp	2018-06-27 18:02:56 UTC (rev 233266)
@@ -93,7 +93,6 @@
 SOFT_LINK_FUNCTION_FOR_SOURCE(PAL, CoreMedia, CMNotificationCenterGetDefaultLocalCenter, CMNotificationCenterRef, (void), ())
 SOFT_LINK_FUNCTION_FOR_SOURCE(PAL, CoreMedia, CMNotificationCenterAddListener, OSStatus, (CMNotificationCenterRef center, const void* listener, CMNotificationCallback callback, CFStringRef notification, const void* object, UInt32 flags), (center, listener, callback, notification, object, flags))
 SOFT_LINK_FUNCTION_FOR_SOURCE(PAL, CoreMedia, CMNotificationCenterRemoveListener, OSStatus, (CMNotificationCenterRef center, const void* listener, CMNotificationCallback callback, CFStringRef notification, const void* object), (center, listener, callback, notification, object))
-SOFT_LINK_FUNCTION_FOR_SOURCE(PAL, CoreMedia, CMSampleBufferCallForEachSample, OSStatus, (CMSampleBufferRef sbuf, OSStatus (* CMSAMPLEBUFFERCALL_NOESCAPE callback)( CMSampleBufferRef sampleBuffer, CMItemCount index, void *refcon), void *refcon), (sbuf, callback, refcon))
 SOFT_LINK_FUNCTION_FOR_SOURCE(PAL, CoreMedia, CMSampleBufferCreate, OSStatus, (CFAllocatorRef allocator, CMBlockBufferRef dataBuffer, Boolean dataReady, CMSampleBufferMakeDataReadyCallback makeDataReadyCallback, void *makeDataReadyRefcon, CMFormatDescriptionRef formatDescription, CMItemCount numSamples, CMItemCount numSampleTimingEntries, const CMSampleTimingInfo *sampleTimingArray, CMItemCount numSampleSizeEntries, const size_t *sampleSizeArray, CMSampleBufferRef *sBufOut), (allocator, dataBuffer, dataReady, makeDataReadyCallback, makeDataReadyRefcon, formatDescription, numSamples, numSampleTimingEntries, sampleTimingArray, numSampleSizeEntries, sampleSizeArray, sBufOut))
 SOFT_LINK_FUNCTION_FOR_SOURCE(PAL, CoreMedia, CMSampleBufferCreateCopy, OSStatus, (CFAllocatorRef allocator, CMSampleBufferRef sbuf, CMSampleBufferRef *sbufCopyOut), (allocator, sbuf, sbufCopyOut))
 SOFT_LINK_FUNCTION_FOR_SOURCE(PAL, CoreMedia, CMSampleBufferCreateCopyWithNewTiming, OSStatus, (CFAllocatorRef allocator, CMSampleBufferRef originalSBuf, CMItemCount numSampleTimingEntries, const CMSampleTimingInfo *sampleTimingArray, CMSampleBufferRef *sBufCopyOut), (allocator, originalSBuf, numSampleTimingEntries, sampleTimingArray, sBufCopyOut))
@@ -150,7 +149,6 @@
 SOFT_LINK_FUNCTION_FOR_SOURCE(PAL, CoreMedia, CMAudioFormatDescriptionGetStreamBasicDescription, const AudioStreamBasicDescription *, (CMAudioFormatDescriptionRef desc), (desc))
 SOFT_LINK_FUNCTION_FOR_SOURCE(PAL, CoreMedia, CMSampleBufferGetAudioBufferListWithRetainedBlockBuffer, OSStatus, (CMSampleBufferRef sbuf, size_t *bufferListSizeNeededOut, AudioBufferList *bufferListOut, size_t bufferListSize, CFAllocatorRef bbufStructAllocator, CFAllocatorRef bbufMemoryAllocator, uint32_t flags, CMBlockBufferRef *blockBufferOut), (sbuf, bufferListSizeNeededOut, bufferListOut, bufferListSize, bbufStructAllocator, bbufMemoryAllocator, flags, blockBufferOut))
 SOFT_LINK_FUNCTION_FOR_SOURCE(PAL, CoreMedia, CMSampleBufferGetNumSamples, CMItemCount, (CMSampleBufferRef sbuf), (sbuf))
-SOFT_LINK_FUNCTION_FOR_SOURCE(PAL, CoreMedia, CMSampleBufferCallBlockForEachSample, OSStatus, (CMSampleBufferRef sbuf, OSStatus (^ CMSAMPLEBUFFERCALL_NOESCAPE handler)(CMSampleBufferRef, CMItemCount)), (sbuf, handler))
 SOFT_LINK_FUNCTION_FOR_SOURCE(PAL, CoreMedia, CMSampleBufferCopySampleBufferForRange, OSStatus, (CFAllocatorRef allocator, CMSampleBufferRef sbuf, CFRange sampleRange, CMSampleBufferRef* sBufOut), (allocator, sbuf, sampleRange, sBufOut))
 SOFT_LINK_FUNCTION_FOR_SOURCE(PAL, CoreMedia, CMSampleBufferGetSampleSizeArray, OSStatus, (CMSampleBufferRef sbuf, CMItemCount sizeArrayEntries, size_t* sizeArrayOut, CMItemCount* sizeArrayEntriesNeededOut), (sbuf, sizeArrayEntries, sizeArrayOut, sizeArrayEntriesNeededOut))
 
@@ -160,6 +158,12 @@
 SOFT_LINK_FUNCTION_FOR_SOURCE(PAL, CoreMedia, CMAudioFormatDescriptionCreate, OSStatus, (CFAllocatorRef allocator, const AudioStreamBasicDescription* asbd, size_t layoutSize, const AudioChannelLayout* layout, size_t magicCookieSize, const void* magicCookie, CFDictionaryRef extensions, CMAudioFormatDescriptionRef* outDesc), (allocator, asbd, layoutSize, layout, magicCookieSize, magicCookie, extensions, outDesc))
 SOFT_LINK_FUNCTION_FOR_SOURCE(PAL, CoreMedia, CMClockGetHostTimeClock, CMClockRef, (void), ())
 SOFT_LINK_FUNCTION_FOR_SOURCE(PAL, CoreMedia, CMClockGetTime, CMTime, (CMClockRef clock), (clock))
+
+#if !PLATFORM(IOS) || __IPHONE_OS_VERSION_MAX_ALLOWED < 120000
+SOFT_LINK_FUNCTION_FOR_SOURCE(PAL, CoreMedia, CMSampleBufferCallForEachSample, OSStatus, (CMSampleBufferRef sbuf, OSStatus (* CMSAMPLEBUFFERCALL_NOESCAPE callback)( CMSampleBufferRef sampleBuffer, CMItemCount index, void *refcon), void *refcon), (sbuf, callback, refcon))
+SOFT_LINK_FUNCTION_FOR_SOURCE(PAL, CoreMedia, CMSampleBufferCallBlockForEachSample, OSStatus, (CMSampleBufferRef sbuf, OSStatus (^ CMSAMPLEBUFFERCALL_NOESCAPE handler)(CMSampleBufferRef, CMItemCount)), (sbuf, handler))
+#endif
+
 #endif // PLATFORM(COCOA)
 
 #if PLATFORM(IOS)

Modified: trunk/Source/WebCore/PAL/pal/cf/CoreMediaSoftLink.h (233265 => 233266)


--- trunk/Source/WebCore/PAL/pal/cf/CoreMediaSoftLink.h	2018-06-27 17:59:37 UTC (rev 233265)
+++ trunk/Source/WebCore/PAL/pal/cf/CoreMediaSoftLink.h	2018-06-27 18:02:56 UTC (rev 233266)
@@ -143,8 +143,6 @@
 #define CMNotificationCenterAddListener softLink_CoreMedia_CMNotificationCenterAddListener
 SOFT_LINK_FUNCTION_FOR_HEADER(PAL, CoreMedia, CMNotificationCenterRemoveListener, OSStatus, (CMNotificationCenterRef center, const void* listener, CMNotificationCallback callback, CFStringRef notification, const void* object), (center, listener, callback, notification, object))
 #define CMNotificationCenterRemoveListener softLink_CoreMedia_CMNotificationCenterRemoveListener
-SOFT_LINK_FUNCTION_FOR_HEADER(PAL, CoreMedia, CMSampleBufferCallForEachSample, OSStatus, (CMSampleBufferRef sbuf, OSStatus (* CMSAMPLEBUFFERCALL_NOESCAPE callback)( CMSampleBufferRef sampleBuffer, CMItemCount index, void *refcon), void *refcon), (sbuf, callback, refcon))
-#define CMSampleBufferCallForEachSample softLink_CoreMedia_CMSampleBufferCallForEachSample
 SOFT_LINK_FUNCTION_FOR_HEADER(PAL, CoreMedia, CMSampleBufferCreate, OSStatus, (CFAllocatorRef allocator, CMBlockBufferRef dataBuffer, Boolean dataReady, CMSampleBufferMakeDataReadyCallback makeDataReadyCallback, void *makeDataReadyRefcon, CMFormatDescriptionRef formatDescription, CMItemCount numSamples, CMItemCount numSampleTimingEntries, const CMSampleTimingInfo *sampleTimingArray, CMItemCount numSampleSizeEntries, const size_t *sampleSizeArray, CMSampleBufferRef *sBufOut), (allocator, dataBuffer, dataReady, makeDataReadyCallback, makeDataReadyRefcon, formatDescription, numSamples, numSampleTimingEntries, sampleTimingArray, numSampleSizeEntries, sampleSizeArray, sBufOut))
 #define CMSampleBufferCreate softLink_CoreMedia_CMSampleBufferCreate
 SOFT_LINK_FUNCTION_FOR_HEADER(PAL, CoreMedia, CMSampleBufferCreateCopy, OSStatus, (CFAllocatorRef allocator, CMSampleBufferRef sbuf, CMSampleBufferRef *sbufCopyOut), (allocator, sbuf, sbufCopyOut))
@@ -252,8 +250,6 @@
 #define CMSampleBufferGetAudioBufferListWithRetainedBlockBuffer softLink_CoreMedia_CMSampleBufferGetAudioBufferListWithRetainedBlockBuffer
 SOFT_LINK_FUNCTION_FOR_HEADER(PAL, CoreMedia, CMSampleBufferGetNumSamples, CMItemCount, (CMSampleBufferRef sbuf), (sbuf))
 #define CMSampleBufferGetNumSamples softLink_CoreMedia_CMSampleBufferGetNumSamples
-SOFT_LINK_FUNCTION_FOR_HEADER(PAL, CoreMedia, CMSampleBufferCallBlockForEachSample, OSStatus, (CMSampleBufferRef sbuf, OSStatus (^ CMSAMPLEBUFFERCALL_NOESCAPE handler)(CMSampleBufferRef, CMItemCount)), (sbuf, handler))
-#define CMSampleBufferCallBlockForEachSample softLink_CoreMedia_CMSampleBufferCallBlockForEachSample
 SOFT_LINK_FUNCTION_FOR_HEADER(PAL, CoreMedia, CMSampleBufferCopySampleBufferForRange, OSStatus, (CFAllocatorRef allocator, CMSampleBufferRef sbuf, CFRange sampleRange, CMSampleBufferRef* sBufOut), (allocator, sbuf, sampleRange, sBufOut))
 #define CMSampleBufferCopySampleBufferForRange softLink_CoreMedia_CMSampleBufferCopySampleBufferForRange
 SOFT_LINK_FUNCTION_FOR_HEADER(PAL, CoreMedia, CMSampleBufferGetSampleSizeArray, OSStatus, (CMSampleBufferRef sbuf, CMItemCount sizeArrayEntries, size_t* sizeArrayOut, CMItemCount* sizeArrayEntriesNeededOut), (sbuf, sizeArrayEntries, sizeArrayOut, sizeArrayEntriesNeededOut))
@@ -271,6 +267,16 @@
 #define CMClockGetHostTimeClock  softLink_CoreMedia_CMClockGetHostTimeClock
 SOFT_LINK_FUNCTION_FOR_HEADER(PAL, CoreMedia, CMClockGetTime, CMTime, (CMClockRef clock), (clock))
 #define CMClockGetTime  softLink_CoreMedia_CMClockGetTime
+
+#if !PLATFORM(IOS) || __IPHONE_OS_VERSION_MAX_ALLOWED < 120000
+
+SOFT_LINK_FUNCTION_FOR_HEADER(PAL, CoreMedia, CMSampleBufferCallForEachSample, OSStatus, (CMSampleBufferRef sbuf, OSStatus (* CMSAMPLEBUFFERCALL_NOESCAPE callback)( CMSampleBufferRef sampleBuffer, CMItemCount index, void *refcon), void *refcon), (sbuf, callback, refcon))
+#define CMSampleBufferCallForEachSample softLink_CoreMedia_CMSampleBufferCallForEachSample
+SOFT_LINK_FUNCTION_FOR_HEADER(PAL, CoreMedia, CMSampleBufferCallBlockForEachSample, OSStatus, (CMSampleBufferRef sbuf, OSStatus (^ CMSAMPLEBUFFERCALL_NOESCAPE handler)(CMSampleBufferRef, CMItemCount)), (sbuf, handler))
+#define CMSampleBufferCallBlockForEachSample softLink_CoreMedia_CMSampleBufferCallBlockForEachSample
+
+#endif
+
 #endif // PLATFORM(COCOA)
 
 #if PLATFORM(IOS)

Modified: trunk/Source/WebCore/PAL/pal/spi/cocoa/NSXPCConnectionSPI.h (233265 => 233266)


--- trunk/Source/WebCore/PAL/pal/spi/cocoa/NSXPCConnectionSPI.h	2018-06-27 17:59:37 UTC (rev 233265)
+++ trunk/Source/WebCore/PAL/pal/spi/cocoa/NSXPCConnectionSPI.h	2018-06-27 18:02:56 UTC (rev 233266)
@@ -25,6 +25,8 @@
 
 #pragma once
 
+#include <wtf/spi/darwin/XPCSPI.h>
+
 #if USE(APPLE_INTERNAL_SDK)
 
 #import <Foundation/NSXPCConnection_Private.h>
@@ -32,7 +34,6 @@
 #else
 
 #import <Foundation/NSXPCConnection.h>
-#import <xpc/xpc.h>
 
 NS_ASSUME_NONNULL_BEGIN
 

Modified: trunk/Source/WebCore/PAL/pal/spi/ios/QuickLookSPI.h (233265 => 233266)


--- trunk/Source/WebCore/PAL/pal/spi/ios/QuickLookSPI.h	2018-06-27 17:59:37 UTC (rev 233265)
+++ trunk/Source/WebCore/PAL/pal/spi/ios/QuickLookSPI.h	2018-06-27 18:02:56 UTC (rev 233266)
@@ -24,6 +24,7 @@
  */
 
 #import <Foundation/Foundation.h>
+#import <QuickLook/QuickLook.h>
 
 #if USE(APPLE_INTERNAL_SDK)
 
@@ -53,8 +54,11 @@
 - (NSData *)provideDataForItem:(QLItem *)item;
 @end
 
-@interface QLItem : NSObject
+@interface QLItem : NSObject<QLPreviewItem>
 - (instancetype)initWithDataProvider:(id<QLPreviewItemDataProvider>)data contentType:(NSString *)contentType previewTitle:(NSString *)previewTitle;
+- (instancetype)initWithPreviewItemProvider:(NSItemProvider *)itemProvider contentType:(NSString *)contentType previewTitle:(NSString *)previewTitle fileSize:(NSNumber *)fileSize;
+- (void)setPreviewItemProviderProgress:(NSNumber*)progress;
+- (void)setUseLoadingTimeout:(BOOL) timeout;
 @end
 
 #define kQLReturnPasswordProtected 1 << 2

Modified: trunk/Source/WebCore/PAL/pal/spi/ios/SystemPreviewSPI.h (233265 => 233266)


--- trunk/Source/WebCore/PAL/pal/spi/ios/SystemPreviewSPI.h	2018-06-27 17:59:37 UTC (rev 233265)
+++ trunk/Source/WebCore/PAL/pal/spi/ios/SystemPreviewSPI.h	2018-06-27 18:02:56 UTC (rev 233266)
@@ -36,12 +36,12 @@
 @class QLPreviewController;
 
 @protocol ASVThumbnailViewDelegate <NSObject>
-- (void)thumbnailView:(ASVThumbnailView *)thumbnailView wantsToPresentPreviewController:(QLPreviewController *)previewController forItem:(QLItem *)item
+- (void)thumbnailView:(ASVThumbnailView *)thumbnailView wantsToPresentPreviewController:(QLPreviewController *)previewController forItem:(QLItem *)item;
 @end
 
 @interface ASVThumbnailView : UIView
 @property (nonatomic, weak) id<ASVThumbnailViewDelegate> delegate;
-@property (nonatomic) QLItem *thumbnailItem;
+@property (nonatomic, assign) QLItem *thumbnailItem;
 @property (nonatomic) CGSize maxThumbnailSize;
 @end
 

Modified: trunk/Source/WebKit/ChangeLog (233265 => 233266)


--- trunk/Source/WebKit/ChangeLog	2018-06-27 17:59:37 UTC (rev 233265)
+++ trunk/Source/WebKit/ChangeLog	2018-06-27 18:02:56 UTC (rev 233266)
@@ -1,3 +1,17 @@
+2018-06-27  Jonathan Bedard  <[email protected]>
+
+        Enable WebKit iOS 12 build
+        https://bugs.webkit.org/show_bug.cgi?id=187024
+        <rdar://problem/39759057>
+
+        Reviewed by David Kilzer.
+
+        * Platform/spi/ios/PDFKitSPI.h: Added PDFKit SPI.
+        * Platform/spi/ios/UIKitSPI.h: Add new UIKit SPI and UICompositingMode enumeration.
+        * UIProcess/ios/WKPDFView.mm: Use PDFKitSPI header.
+        * UIProcess/ios/WKSystemPreviewView.mm: Use CoreGraphicsSPI.h.
+        * UIProcess/ios/fullscreen/WKFullscreenStackView.mm: Use QuartzCoreSPI.h.
+
 2018-06-27  Timothy Horton  <[email protected]>
 
         CSS Animation Triggers is not an experimental feature, should be globally off by default

Copied: trunk/Source/WebKit/Platform/spi/ios/PDFKitSPI.h (from rev 233265, trunk/Source/WebCore/PAL/pal/spi/ios/SystemPreviewSPI.h) (0 => 233266)


--- trunk/Source/WebKit/Platform/spi/ios/PDFKitSPI.h	                        (rev 0)
+++ trunk/Source/WebKit/Platform/spi/ios/PDFKitSPI.h	2018-06-27 18:02:56 UTC (rev 233266)
@@ -0,0 +1,61 @@
+/*
+ * Copyright (C) 2018 Apple Inc. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ *    notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ *    notice, this list of conditions and the following disclaimer in the
+ *    documentation and/or other materials provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
+ * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+ * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
+ * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
+ * THE POSSIBILITY OF SUCH DAMAGE.
+ */
+
+#if USE(APPLE_INTERNAL_SDK)
+
+#import <PDFKit/PDFHostViewController.h>
+
+#else
+
+#import "UIKitSPI.h"
+
+@interface _UIRemoteViewController : UIViewController
+@end
+
+@protocol PDFHostViewControllerDelegate<NSObject>
+@end
+
+@interface PDFHostViewController : _UIRemoteViewController<UIGestureRecognizerDelegate, UIDocumentPasswordViewDelegate>
+
++ (void) createHostView:(void(^)(PDFHostViewController* hostViewController)) callback forExtensionIdentifier:(NSString*) extensionIdentifier;
+- (void) setDelegate:(id<PDFHostViewControllerDelegate>) delegate;
+- (void) setDocumentData:(NSData*) data withScrollView:(UIScrollView*) scrollView;
+
+- (void) findString:(NSString*) string withOptions:(NSStringCompareOptions) options;
+- (void) cancelFindString;
+- (void) focusOnSearchResultAtIndex:(NSUInteger) searchIndex;
+
+- (NSInteger) currentPageIndex;
+- (NSInteger) pageCount;
+- (UIView*) pageNumberIndicator;
+- (void) goToPageIndex:(NSInteger) pageIndex;
+- (void) updatePDFViewLayout;
+
+- (void) beginPDFViewRotation;
+- (void) endPDFViewRotation;
+
+@end
+
+#endif

Modified: trunk/Source/WebKit/Platform/spi/ios/UIKitSPI.h (233265 => 233266)


--- trunk/Source/WebKit/Platform/spi/ios/UIKitSPI.h	2018-06-27 17:59:37 UTC (rev 233265)
+++ trunk/Source/WebKit/Platform/spi/ios/UIKitSPI.h	2018-06-27 18:02:56 UTC (rev 233266)
@@ -474,6 +474,8 @@
 - (void)safeAreaInsetsDidChange;
 #endif
 @property (nonatomic, setter=_setContinuousCornerRadius:) CGFloat _continuousCornerRadius;
+- (void)insertSubview:(UIView *)view above:(UIView *)sibling;
+- (void)viewWillMoveToSuperview:(UIView *)newSuperview;
 @end
 
 @interface UIWebSelectionView : UIView
@@ -935,14 +937,22 @@
 - (void)configureLayerView:(UIView *)view;
 @end
 
+@interface _UIVisualEffectTintLayerConfig : _UIVisualEffectLayerConfig
++ (instancetype)layerWithTintColor:(UIColor *)tintColor;
++ (instancetype)layerWithTintColor:(UIColor *)tintColor filterType:(NSString *)filterType NS_AVAILABLE_IOS(9_0);
+@end
+
 @interface _UIVisualEffectConfig : NSObject
 @property (nonatomic, readonly) _UIVisualEffectLayerConfig *contentConfig;
 + (_UIVisualEffectConfig *)configWithContentConfig:(_UIVisualEffectLayerConfig *)contentConfig;
 @end
 
+typedef NSInteger UICompositingMode;
+
 @interface UIVisualEffect ()
 + (UIVisualEffect *)emptyEffect;
 + (UIVisualEffect *)effectCombiningEffects:(NSArray<UIVisualEffect *> *)effects;
++ (UIVisualEffect *)effectCompositingColor:(UIColor *)color withMode:(UICompositingMode)compositingMode alpha:(CGFloat)alpha;
 @end
 
 @interface UIColorEffect : UIVisualEffect

Modified: trunk/Source/WebKit/UIProcess/ios/WKPDFView.mm (233265 => 233266)


--- trunk/Source/WebKit/UIProcess/ios/WKPDFView.mm	2018-06-27 17:59:37 UTC (rev 233265)
+++ trunk/Source/WebKit/UIProcess/ios/WKPDFView.mm	2018-06-27 18:02:56 UTC (rev 233266)
@@ -30,11 +30,12 @@
 
 #import "APIUIClient.h"
 #import "FindClient.h"
+#import "PDFKitSPI.h"
 #import "WKActionSheetAssistant.h"
 #import "WKWebViewInternal.h"
 #import "WebPageProxy.h"
 #import "_WKWebViewPrintFormatterInternal.h"
-#import <PDFKit/PDFHostViewController.h>
+#import <MobileCoreServices/MobileCoreServices.h>
 #import <WebCore/WebCoreNSURLExtras.h>
 #import <wtf/BlockPtr.h>
 #import <wtf/MainThread.h>

Modified: trunk/Source/WebKit/UIProcess/ios/WKSystemPreviewView.mm (233265 => 233266)


--- trunk/Source/WebKit/UIProcess/ios/WKSystemPreviewView.mm	2018-06-27 17:59:37 UTC (rev 233265)
+++ trunk/Source/WebKit/UIProcess/ios/WKSystemPreviewView.mm	2018-06-27 18:02:56 UTC (rev 233266)
@@ -35,6 +35,7 @@
 #import <MobileCoreServices/MobileCoreServices.h>
 #import <WebCore/FloatRect.h>
 #import <WebCore/LocalizedStrings.h>
+#import <pal/spi/cg/CoreGraphicsSPI.h>
 #import <pal/spi/ios/SystemPreviewSPI.h>
 #import <wtf/RetainPtr.h>
 #import <wtf/SoftLinking.h>

Modified: trunk/Source/WebKit/UIProcess/ios/fullscreen/WKFullscreenStackView.mm (233265 => 233266)


--- trunk/Source/WebKit/UIProcess/ios/fullscreen/WKFullscreenStackView.mm	2018-06-27 17:59:37 UTC (rev 233265)
+++ trunk/Source/WebKit/UIProcess/ios/fullscreen/WKFullscreenStackView.mm	2018-06-27 18:02:56 UTC (rev 233266)
@@ -29,9 +29,9 @@
 #include "WKFullscreenStackView.h"
 
 #import "UIKitSPI.h"
-#import <QuartzCore/CAFilter.h>
 #import <UIKit/UIVisualEffectView.h>
 #import <pal/cf/CoreMediaSoftLink.h>
+#import <pal/spi/cocoa/QuartzCoreSPI.h>
 #import <wtf/NeverDestroyed.h>
 #import <wtf/RetainPtr.h>
 

Modified: trunk/Source/WebKit/WebKit.xcodeproj/project.pbxproj (233265 => 233266)


--- trunk/Source/WebKit/WebKit.xcodeproj/project.pbxproj	2018-06-27 17:59:37 UTC (rev 233265)
+++ trunk/Source/WebKit/WebKit.xcodeproj/project.pbxproj	2018-06-27 18:02:56 UTC (rev 233266)
@@ -3146,6 +3146,7 @@
 		31607F3819627002009B87DA /* LegacySessionStateCoding.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LegacySessionStateCoding.h; sourceTree = "<group>"; };
 		316B8B612054B55800BD4A62 /* WKSystemPreviewView.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = WKSystemPreviewView.mm; path = ios/WKSystemPreviewView.mm; sourceTree = "<group>"; };
 		316B8B622054B55800BD4A62 /* WKSystemPreviewView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = WKSystemPreviewView.h; path = ios/WKSystemPreviewView.h; sourceTree = "<group>"; };
+		3178AF9720E2A7F80074DE94 /* PDFKitSPI.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PDFKitSPI.h; sourceTree = "<group>"; };
 		317FE7C11C487A6600A0CA89 /* APIExperimentalFeature.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = APIExperimentalFeature.cpp; sourceTree = "<group>"; };
 		317FE7C21C487A6600A0CA89 /* APIExperimentalFeature.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = APIExperimentalFeature.h; sourceTree = "<group>"; };
 		317FE7C71C487D9D00A0CA89 /* _WKExperimentalFeature.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = _WKExperimentalFeature.h; sourceTree = "<group>"; };
@@ -8624,6 +8625,7 @@
 				2D4AF0882044C3C4006C8817 /* FrontBoardServicesSPI.h */,
 				CE1A0BCF1A48E6C60054EF74 /* ManagedConfigurationSPI.h */,
 				A13B3DA1207F39DE0090C58D /* MobileWiFiSPI.h */,
+				3178AF9720E2A7F80074DE94 /* PDFKitSPI.h */,
 				CE1A0BD01A48E6C60054EF74 /* TCCSPI.h */,
 				CE1A0BD11A48E6C60054EF74 /* TextInputSPI.h */,
 				CEE4AE2A1A5DCF430002F49B /* UIKitSPI.h */,

Modified: trunk/Tools/ChangeLog (233265 => 233266)


--- trunk/Tools/ChangeLog	2018-06-27 17:59:37 UTC (rev 233265)
+++ trunk/Tools/ChangeLog	2018-06-27 18:02:56 UTC (rev 233266)
@@ -1,3 +1,14 @@
+2018-06-27  Jonathan Bedard  <[email protected]>
+
+        Enable WebKit iOS 12 build
+        https://bugs.webkit.org/show_bug.cgi?id=187024
+        <rdar://problem/39759057>
+
+        Reviewed by David Kilzer.
+
+        * Scripts/configure-xcode-for-ios-development:
+        (copyMissingHeadersFromSDKToSDKIfNeeded): Copy launch.h into embedded SDKs.
+
 2018-06-27  Robin Morisset  <[email protected]>
 
         [WSL] Add a control-flow stack to the execution rules in WSL.ott

Modified: trunk/Tools/Scripts/configure-xcode-for-ios-development (233265 => 233266)


--- trunk/Tools/Scripts/configure-xcode-for-ios-development	2018-06-27 17:59:37 UTC (rev 233265)
+++ trunk/Tools/Scripts/configure-xcode-for-ios-development	2018-06-27 18:02:56 UTC (rev 233266)
@@ -75,6 +75,7 @@
 {
     my @missingHeaders = qw(
         /usr/include/crt_externs.h
+        /usr/include/launch.h
         /usr/include/MacErrors.h
         /usr/include/mach/mach_types.defs
         /usr/include/mach/machine/machine_types.defs

Modified: trunk/WebKitLibraries/ChangeLog (233265 => 233266)


--- trunk/WebKitLibraries/ChangeLog	2018-06-27 17:59:37 UTC (rev 233265)
+++ trunk/WebKitLibraries/ChangeLog	2018-06-27 18:02:56 UTC (rev 233266)
@@ -1,3 +1,13 @@
+2018-06-27  Jonathan Bedard  <[email protected]>
+
+        Enable WebKit iOS 12 build
+        https://bugs.webkit.org/show_bug.cgi?id=187024
+        <rdar://problem/39759057>
+
+        Reviewed by David Kilzer.
+
+        * WebKitPrivateFrameworkStubs/iOS/12: Added.
+
 2018-05-24  Joseph Pecoraro  <[email protected]>
 
         [iOS] Hard link AppSupport instead of soft linking

Added: trunk/WebKitLibraries/WebKitPrivateFrameworkStubs/iOS/12/AppSupport.framework/AppSupport.tbd (0 => 233266)


--- trunk/WebKitLibraries/WebKitPrivateFrameworkStubs/iOS/12/AppSupport.framework/AppSupport.tbd	                        (rev 0)
+++ trunk/WebKitLibraries/WebKitPrivateFrameworkStubs/iOS/12/AppSupport.framework/AppSupport.tbd	2018-06-27 18:02:56 UTC (rev 233266)
@@ -0,0 +1,20 @@
+--- !tapi-tbd-v2
+archs:
+  - arm64
+  - x86_64
+exports:
+  -
+    archs:
+      - armv7
+      - armv7s
+      - arm64
+      - i386
+      - x86_64
+    symbols:
+      - _CPCopyBundleIdentifierFromAuditToken
+    objc-classes:
+      - _CPNetworkObserver
+install-name: /System/Library/PrivateFrameworks/AppSupport.framework/AppSupport
+objc-constraint: none
+platform: ios
+...

Added: trunk/WebKitLibraries/WebKitPrivateFrameworkStubs/iOS/12/AssertionServices.framework/AssertionServices.tbd (0 => 233266)


--- trunk/WebKitLibraries/WebKitPrivateFrameworkStubs/iOS/12/AssertionServices.framework/AssertionServices.tbd	                        (rev 0)
+++ trunk/WebKitLibraries/WebKitPrivateFrameworkStubs/iOS/12/AssertionServices.framework/AssertionServices.tbd	2018-06-27 18:02:56 UTC (rev 233266)
@@ -0,0 +1,22 @@
+--- !tapi-tbd-v2
+archs:
+  - arm64
+  - x86_64
+exports:
+  -
+    archs:
+      - armv7
+      - armv7s
+      - arm64
+      - i386
+      - x86_64
+    objc-classes:
+      - _BKSApplicationStateMonitor
+      - _BKSProcessAssertion
+    symbols:
+      - _BKSApplicationStateMostElevatedStateForProcessIDKey
+      - _BKSApplicationStateProcessIDKey
+install-name: /System/Library/PrivateFrameworks/AssertionServices.framework/AssertionServices
+objc-constraint: none
+platform: ios
+...

Added: trunk/WebKitLibraries/WebKitPrivateFrameworkStubs/iOS/12/CorePDF.framework/CorePDF.tbd (0 => 233266)


--- trunk/WebKitLibraries/WebKitPrivateFrameworkStubs/iOS/12/CorePDF.framework/CorePDF.tbd	                        (rev 0)
+++ trunk/WebKitLibraries/WebKitPrivateFrameworkStubs/iOS/12/CorePDF.framework/CorePDF.tbd	2018-06-27 18:02:56 UTC (rev 233266)
@@ -0,0 +1,21 @@
+--- !tapi-tbd-v2
+archs:
+  - arm64
+  - x86_64
+exports:
+  -
+    archs:
+      - armv7
+      - armv7s
+      - arm64
+      - i386
+      - x86_64
+    objc-classes:
+      - _UIPDFDocument
+      - _UIPDFLinkAnnotation
+      - _UIPDFPageView
+      - _UIPDFSelection
+install-name: /System/Library/PrivateFrameworks/CorePDF.framework/CorePDF
+objc-constraint: none
+platform: ios
+...

Added: trunk/WebKitLibraries/WebKitPrivateFrameworkStubs/iOS/12/CorePrediction.framework/CorePrediction.tbd (0 => 233266)


--- trunk/WebKitLibraries/WebKitPrivateFrameworkStubs/iOS/12/CorePrediction.framework/CorePrediction.tbd	                        (rev 0)
+++ trunk/WebKitLibraries/WebKitPrivateFrameworkStubs/iOS/12/CorePrediction.framework/CorePrediction.tbd	2018-06-27 18:02:56 UTC (rev 233266)
@@ -0,0 +1,19 @@
+--- !tapi-tbd-v2
+archs:
+  - arm64
+  - x86_64
+exports:
+  -
+    archs:
+      - armv7
+      - armv7s
+      - arm64
+      - i386
+      - x86_64
+    symbols:
+      - _svm_load_model
+      - _svm_predict_values
+install-name: /System/Library/PrivateFrameworks/CorePrediction.framework/CorePrediction
+objc-constraint: none
+platform: ios
+...

Added: trunk/WebKitLibraries/WebKitPrivateFrameworkStubs/iOS/12/DeviceIdentity.framework/DeviceIdentity.tbd (0 => 233266)


--- trunk/WebKitLibraries/WebKitPrivateFrameworkStubs/iOS/12/DeviceIdentity.framework/DeviceIdentity.tbd	                        (rev 0)
+++ trunk/WebKitLibraries/WebKitPrivateFrameworkStubs/iOS/12/DeviceIdentity.framework/DeviceIdentity.tbd	2018-06-27 18:02:56 UTC (rev 233266)
@@ -0,0 +1,30 @@
+--- !tapi-tbd-v2
+archs:
+  - armv7
+  - armv7s
+  - arm64
+  - i386
+  - x86_64
+exports:
+  -
+    archs:
+      - armv7
+      - armv7s
+      - arm64
+      - i386
+      - x86_64
+    symbols:
+      - _DeviceIdentityIssueClientCertificateWithCompletion
+      - _kMAOptionsBAAAccessControls
+      - _kMAOptionsBAAIgnoreExistingKeychainItems
+      - _kMAOptionsBAAKeychainAccessGroup
+      - _kMAOptionsBAAKeychainLabel
+      - _kMAOptionsBAANonce
+      - _kMAOptionsBAAOIDNonce
+      - _kMAOptionsBAAOIDSToInclude
+      - _kMAOptionsBAASCRTAttestation
+      - _kMAOptionsBAAValidity
+install-name: /System/Library/PrivateFrameworks/DeviceIdentity.framework/DeviceIdentity
+objc-constraint: none
+platform: ios
+...

Added: trunk/WebKitLibraries/WebKitPrivateFrameworkStubs/iOS/12/GraphicsServices.framework/GraphicsServices.tbd (0 => 233266)


--- trunk/WebKitLibraries/WebKitPrivateFrameworkStubs/iOS/12/GraphicsServices.framework/GraphicsServices.tbd	                        (rev 0)
+++ trunk/WebKitLibraries/WebKitPrivateFrameworkStubs/iOS/12/GraphicsServices.framework/GraphicsServices.tbd	2018-06-27 18:02:56 UTC (rev 233266)
@@ -0,0 +1,25 @@
+--- !tapi-tbd-v2
+archs:
+  - armv7
+  - armv7s
+  - arm64
+  - i386
+  - x86_64
+exports:
+  -
+    archs:
+      - armv7
+      - armv7s
+      - arm64
+      - i386
+      - x86_64
+    symbols:
+      - _GSCurrentEventTimestamp
+      - _GSFontInitialize
+      - _GSFontPurgeFontCache
+      - _GSInitialize
+      - _GSSystemRootDirectory
+install-name: /System/Library/PrivateFrameworks/GraphicsServices.framework/GraphicsServices
+objc-constraint: none
+platform: ios
+...

Added: trunk/WebKitLibraries/WebKitPrivateFrameworkStubs/iOS/12/IOSurfaceAccelerator.framework/IOSurfaceAccelerator.tbd (0 => 233266)


--- trunk/WebKitLibraries/WebKitPrivateFrameworkStubs/iOS/12/IOSurfaceAccelerator.framework/IOSurfaceAccelerator.tbd	                        (rev 0)
+++ trunk/WebKitLibraries/WebKitPrivateFrameworkStubs/iOS/12/IOSurfaceAccelerator.framework/IOSurfaceAccelerator.tbd	2018-06-27 18:02:56 UTC (rev 233266)
@@ -0,0 +1,24 @@
+--- !tapi-tbd-v2
+archs:
+  - armv7
+  - armv7s
+  - arm64
+  - i386
+  - x86_64
+exports:
+  -
+    archs:
+      - armv7
+      - armv7s
+      - arm64
+      - i386
+      - x86_64
+    symbols:
+      - _IOSurfaceAcceleratorCreate
+      - _IOSurfaceAcceleratorGetRunLoopSource
+      - _IOSurfaceAcceleratorTransformSurface
+      - _kIOSurfaceAcceleratorUnwireSurfaceKey
+install-name: /System/Library/PrivateFrameworks/IOSurfaceAccelerator.framework/IOSurfaceAccelerator
+objc-constraint: none
+platform: ios
+...

Added: trunk/WebKitLibraries/WebKitPrivateFrameworkStubs/iOS/12/SafariSafeBrowsing.framework/SafariSafeBrowsing.tbd (0 => 233266)


--- trunk/WebKitLibraries/WebKitPrivateFrameworkStubs/iOS/12/SafariSafeBrowsing.framework/SafariSafeBrowsing.tbd	                        (rev 0)
+++ trunk/WebKitLibraries/WebKitPrivateFrameworkStubs/iOS/12/SafariSafeBrowsing.framework/SafariSafeBrowsing.tbd	2018-06-27 18:02:56 UTC (rev 233266)
@@ -0,0 +1,29 @@
+--- !tapi-tbd-v2
+archs:
+  - armv7
+  - armv7s
+  - arm64
+  - i386
+  - x86_64
+exports:
+  -
+    archs:
+      - armv7
+      - armv7s
+      - arm64
+      - i386
+      - x86_64
+    symbols:
+      - _SSBProviderGoogle
+      - _SSBProviderTencent
+      - __ZN12SafeBrowsing7Service4mainEv
+    objc-classes:
+      - _SSBLookupContext
+      - _SSBLookupResult
+      - _SSBServiceLookupResult
+install-name: /System/Library/PrivateFrameworks/SafariSafeBrowsing.framework/SafariSafeBrowsing
+current-version: 0
+compatibility-version: 0
+objc-constraint: none
+platform: ios
+...

Added: trunk/WebKitLibraries/WebKitPrivateFrameworkStubs/iOS/12/URLFormatting.framework/URLFormatting.tbd (0 => 233266)


--- trunk/WebKitLibraries/WebKitPrivateFrameworkStubs/iOS/12/URLFormatting.framework/URLFormatting.tbd	                        (rev 0)
+++ trunk/WebKitLibraries/WebKitPrivateFrameworkStubs/iOS/12/URLFormatting.framework/URLFormatting.tbd	2018-06-27 18:02:56 UTC (rev 233266)
@@ -0,0 +1,9 @@
+--- !tapi-tbd-v2
+archs:
+  - arm64
+  - x86_64
+install-name: /System/Library/PrivateFrameworks/URLFormatting.framework/URLFormatting
+current-version: 59.88
+objc-constraint: none
+platform: ios
+...
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to