WebKit Bugzilla
Attachment 373756 Details for
Bug 199481
: [iOS 13] Enable WebKit build
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
patch-2
patch.patch (text/plain), 21.87 KB, created by
Jonathan Bedard
on 2019-07-09 13:51:31 PDT
(
hide
)
Description:
patch-2
Filename:
MIME Type:
Creator:
Jonathan Bedard
Created:
2019-07-09 13:51:31 PDT
Size:
21.87 KB
patch
obsolete
>Index: Source/WebCore/ChangeLog >=================================================================== >--- Source/WebCore/ChangeLog (revision 247207) >+++ Source/WebCore/ChangeLog (working copy) >@@ -1,3 +1,17 @@ >+2019-07-09 Jonathan Bedard <jbedard@apple.com> >+ >+ [iOS 13] Enable WebKit build >+ https://bugs.webkit.org/show_bug.cgi?id=199481 >+ <rdar://problem/52619048> >+ >+ Reviewed by NOBODY (OOPS!). >+ >+ No new tests, iOS 13 test expectations will be migrated in the near future. >+ >+ * platform/ios/LocalCurrentTraitCollection.mm: >+ (WebCore::LocalCurrentTraitCollection::LocalCurrentTraitCollection): Remove underscore from currentTraitCollection. >+ (WebCore::LocalCurrentTraitCollection::~LocalCurrentTraitCollection): Remove underscore from setCurrentTraitCollection. >+ > 2019-07-08 Antoine Quint <graouts@apple.com> > > [Pointer Events] Enable only on the most recent version of the supported iOS family >Index: Source/WebCore/PAL/ChangeLog >=================================================================== >--- Source/WebCore/PAL/ChangeLog (revision 247207) >+++ Source/WebCore/PAL/ChangeLog (working copy) >@@ -1,3 +1,19 @@ >+2019-07-09 Jonathan Bedard <jbedard@apple.com> >+ >+ [iOS 13] Enable WebKit build >+ https://bugs.webkit.org/show_bug.cgi?id=199481 >+ <rdar://problem/52619048> >+ >+ Reviewed by NOBODY (OOPS!). >+ >+ * pal/spi/cocoa/NSProgressSPI.h: We need the NSProgress SPI in public builds because NSProgress API >+ is marked unavailable on iOS, watchOS and tvOS. >+ * pal/spi/ios/CoreUISPI.h: Add CUIStyleEffectConfiguration.appearanceName SPI. >+ * pal/spi/ios/DataDetectorsUISPI.h: Add UIContextMenuConfiguration.contextMenuConfigurationForURL SPI. >+ * pal/spi/ios/SystemPreviewSPI.h: Add ARQuickLookWebKitItem.initWithPreviewItemProvider SPI. >+ * pal/spi/ios/UIKitSPI.h: Add systemBrownColor, UIColor.tableCellDefaultSelectionTintColor should be marked nullable. >+ * pal/spi/mac/AVFoundationSPI.h: Add AVOutputDevice.name SPI. >+ > 2019-07-08 Antoine Quint <graouts@apple.com> > > [Pointer Events] Enable only on the most recent version of the supported iOS family >Index: Source/WebCore/PAL/pal/spi/cocoa/NSProgressSPI.h >=================================================================== >--- Source/WebCore/PAL/pal/spi/cocoa/NSProgressSPI.h (revision 247207) >+++ Source/WebCore/PAL/pal/spi/cocoa/NSProgressSPI.h (working copy) >@@ -25,16 +25,17 @@ > > #pragma once > >-#define USE_NSPROGRESS_PUBLISHING_SPI ((PLATFORM(IOS_FAMILY) && __IPHONE_OS_VERSION_MIN_REQUIRED < 130000) || (PLATFORM(WATCHOS) && __WATCH_OS_VERSION_MIN_REQUIRED < 60000) || (PLATFORM(APPLETV) && __TV_OS_VERSION_MIN_REQUIRED < 130000)) >- >-#if USE(NSPROGRESS_PUBLISHING_SPI) >- > #if USE(APPLE_INTERNAL_SDK) > >+#define USE_NSPROGRESS_PUBLISHING_SPI ((PLATFORM(IOS_FAMILY) && __IPHONE_OS_VERSION_MIN_REQUIRED < 130000) || (PLATFORM(WATCHOS) && __WATCH_OS_VERSION_MIN_REQUIRED < 60000) || (PLATFORM(APPLETV) && __TV_OS_VERSION_MIN_REQUIRED < 130000)) > #import <Foundation/NSProgress_Private.h> > > #else > >+#define USE_NSPROGRESS_PUBLISHING_SPI PLATFORM(IOS_FAMILY) || PLATFORM(WATCHOS) || PLATFORM(APPLETV) >+ >+#if USE_NSPROGRESS_PUBLISHING_SPI >+ > @interface NSProgress () > > - (void)_publish; >@@ -44,6 +45,6 @@ > > @end > >-#endif // not USE(APPLE_INTERNAL_SDK) >+#endif // USE_NSPROGRESS_PUBLISHING_SPI > >-#endif // USE(NSPROGRESS_PUBLISHING_SPI) >+#endif // not USE(APPLE_INTERNAL_SDK) >Index: Source/WebCore/PAL/pal/spi/ios/CoreUISPI.h >=================================================================== >--- Source/WebCore/PAL/pal/spi/ios/CoreUISPI.h (revision 247207) >+++ Source/WebCore/PAL/pal/spi/ios/CoreUISPI.h (working copy) >@@ -39,6 +39,7 @@ > > @interface CUIStyleEffectConfiguration () > @property (nonatomic) BOOL useSimplifiedEffect; >+@property (nonatomic, copy) NSString *appearanceName; > @end > > @interface CUICatalog : NSObject >Index: Source/WebCore/PAL/pal/spi/ios/DataDetectorsUISPI.h >=================================================================== >--- Source/WebCore/PAL/pal/spi/ios/DataDetectorsUISPI.h (revision 247207) >+++ Source/WebCore/PAL/pal/spi/ios/DataDetectorsUISPI.h (working copy) >@@ -53,6 +53,7 @@ > @class UIContextMenuConfiguration; > @interface DDContextMenuAction > + (UIContextMenuConfiguration *)contextMenuConfigurationWithURL:(NSURL *)URL inView:(UIView *)view context:(NSDictionary *)context menuIdentifier:(NSString *)menuIdentifier; >++ (UIContextMenuConfiguration *)contextMenuConfigurationForURL:(NSURL *)URL identifier:(NSString *)identifier selectedText:(NSString *)selectedText results:(NSArray *) results inView: (UIView *) view context:(NSDictionary *)context menuIdentifier:(NSString *)menuIdentifier; > @end > #endif > >Index: Source/WebCore/PAL/pal/spi/ios/SystemPreviewSPI.h >=================================================================== >--- Source/WebCore/PAL/pal/spi/ios/SystemPreviewSPI.h (revision 247207) >+++ Source/WebCore/PAL/pal/spi/ios/SystemPreviewSPI.h (working copy) >@@ -35,6 +35,8 @@ > > #import <UIKit/UIKit.h> > >+NS_ASSUME_NONNULL_BEGIN >+ > @class ASVThumbnailView; > @class QLItem; > @class QLPreviewController; >@@ -49,15 +51,24 @@ > @property (nonatomic) CGSize maxThumbnailSize; > @end > >+NS_ASSUME_NONNULL_END >+ > #if HAVE(ARKIT_QUICK_LOOK_PREVIEW_ITEM) > #import <ARKit/ARKit.h> > >+NS_ASSUME_NONNULL_BEGIN >+ > @class ARQuickLookWebKitItem; > > @interface ARQuickLookWebKitItem : QLItem >-- (instancetype)initWithPreviewItemProvider:(NSItemProvider *_Nonnull)itemProvider contentType:(NSString *_Nonnull)contentType previewTitle:(NSString *_Nonnull)previewTitle fileSize:(NSNumber *_Nonnull)fileSize previewItem:(ARQuickLookPreviewItem *)previewItem; >+- (instancetype)initWithPreviewItemProvider:(NSItemProvider *)itemProvider contentType:(NSString *)contentType previewTitle:(NSString *)previewTitle fileSize:(NSNumber *)fileSize previewItem:(ARQuickLookPreviewItem *)previewItem; > @end >+ >+NS_ASSUME_NONNULL_END >+ > #endif > >+ >+ > #endif > >Index: Source/WebCore/PAL/pal/spi/ios/UIKitSPI.h >=================================================================== >--- Source/WebCore/PAL/pal/spi/ios/UIKitSPI.h (revision 247207) >+++ Source/WebCore/PAL/pal/spi/ios/UIKitSPI.h (working copy) >@@ -109,6 +109,7 @@ typedef enum { > @interface UIColor () > > + (UIColor *)systemBlueColor; >++ (UIColor *)systemBrownColor; > + (UIColor *)systemGrayColor; > + (UIColor *)systemGreenColor; > + (UIColor *)systemOrangeColor; >@@ -164,7 +165,7 @@ NS_ASSUME_NONNULL_END > > #if HAVE(OS_DARK_MODE_SUPPORT) > @interface UIColor (UIColorInternal) >-+ (UIColor *)tableCellDefaultSelectionTintColor; >++ (UIColor * _Nullable)tableCellDefaultSelectionTintColor; > @end > #endif > >Index: Source/WebCore/PAL/pal/spi/mac/AVFoundationSPI.h >=================================================================== >--- Source/WebCore/PAL/pal/spi/mac/AVFoundationSPI.h (revision 247207) >+++ Source/WebCore/PAL/pal/spi/mac/AVFoundationSPI.h (working copy) >@@ -69,6 +69,7 @@ NS_ASSUME_NONNULL_BEGIN > > @class AVOutputContext; > @class AVOutputDevice; >+ > @interface AVOutputContext : NSObject <NSSecureCoding> > @property (nonatomic, readonly) NSString *deviceName; > + (instancetype)outputContext; >@@ -77,6 +78,10 @@ @interface AVOutputContext : NSObject <N > @property (readonly) NSArray<AVOutputDevice *> *outputDevices; > @end > >+@interface AVOutputDevice : NSObject >+@property (nonatomic, readonly) NSString *name; >+@end >+ > #if !PLATFORM(IOS_FAMILY) > @interface AVPlayer (AVPlayerExternalPlaybackSupportPrivate) > @property (nonatomic, retain, nullable) AVOutputContext *outputContext; >Index: Source/WebCore/platform/ios/LocalCurrentTraitCollection.mm >=================================================================== >--- Source/WebCore/platform/ios/LocalCurrentTraitCollection.mm (revision 247207) >+++ Source/WebCore/platform/ios/LocalCurrentTraitCollection.mm (working copy) >@@ -34,7 +34,7 @@ namespace WebCore { > LocalCurrentTraitCollection::LocalCurrentTraitCollection(bool useDarkAppearance, bool useElevatedUserInterfaceLevel) > { > #if HAVE(OS_DARK_MODE_SUPPORT) >- m_savedTraitCollection = [PAL::getUITraitCollectionClass() _currentTraitCollection]; >+ m_savedTraitCollection = [PAL::getUITraitCollectionClass() currentTraitCollection]; > m_usingDarkAppearance = useDarkAppearance; > m_usingElevatedUserInterfaceLevel = useElevatedUserInterfaceLevel; > >@@ -42,7 +42,7 @@ LocalCurrentTraitCollection::LocalCurren > auto backgroundLevelTrait = [PAL::getUITraitCollectionClass() traitCollectionWithUserInterfaceLevel:m_usingElevatedUserInterfaceLevel ? UIUserInterfaceLevelElevated : UIUserInterfaceLevelBase]; > auto newTraitCollection = [PAL::getUITraitCollectionClass() traitCollectionWithTraitsFromCollections:@[ m_savedTraitCollection.get(), userInterfaceStyleTrait, backgroundLevelTrait ]]; > >- [PAL::getUITraitCollectionClass() _setCurrentTraitCollection:newTraitCollection]; >+ [PAL::getUITraitCollectionClass() setCurrentTraitCollection:newTraitCollection]; > #else > UNUSED_PARAM(useDarkAppearance); > UNUSED_PARAM(useElevatedUserInterfaceLevel); >@@ -52,11 +52,11 @@ LocalCurrentTraitCollection::LocalCurren > LocalCurrentTraitCollection::LocalCurrentTraitCollection(UITraitCollection *traitCollection) > { > #if HAVE(OS_DARK_MODE_SUPPORT) >- m_savedTraitCollection = [PAL::getUITraitCollectionClass() _currentTraitCollection]; >+ m_savedTraitCollection = [PAL::getUITraitCollectionClass() currentTraitCollection]; > m_usingDarkAppearance = traitCollection.userInterfaceStyle == UIUserInterfaceStyleDark; > m_usingElevatedUserInterfaceLevel = traitCollection.userInterfaceLevel == UIUserInterfaceLevelElevated; > >- [PAL::getUITraitCollectionClass() _setCurrentTraitCollection:traitCollection]; >+ [PAL::getUITraitCollectionClass() setCurrentTraitCollection:traitCollection]; > #else > UNUSED_PARAM(traitCollection); > #endif >@@ -65,7 +65,7 @@ LocalCurrentTraitCollection::LocalCurren > LocalCurrentTraitCollection::~LocalCurrentTraitCollection() > { > #if HAVE(OS_DARK_MODE_SUPPORT) >- [PAL::getUITraitCollectionClass() _setCurrentTraitCollection:m_savedTraitCollection.get()]; >+ [PAL::getUITraitCollectionClass() setCurrentTraitCollection:m_savedTraitCollection.get()]; > #endif > } > >Index: Source/WebKit/ChangeLog >=================================================================== >--- Source/WebKit/ChangeLog (revision 247207) >+++ Source/WebKit/ChangeLog (working copy) >@@ -1,3 +1,16 @@ >+2019-07-09 Jonathan Bedard <jbedard@apple.com> >+ >+ [iOS 13] Enable WebKit build >+ https://bugs.webkit.org/show_bug.cgi?id=199481 >+ <rdar://problem/52619048> >+ >+ Reviewed by NOBODY (OOPS!). >+ >+ * Platform/spi/ios/UIKitSPI.h: Add UITextEffectsWindow.sharedTextEffectsWindowForWindowScene SPI. >+ * UIProcess/ios/WKContentViewInteraction.mm: >+ (-[WKContentView showGlobalMenuControllerInRect:]): setTargetRect, setMenuVisible marked depreciated in iOS 13. >+ (-[WKContentView hideGlobalMenuController]): Ditto. >+ > 2019-07-07 Antoine Quint <graouts@apple.com> > > [Pointer Events] touch-action should affect the behavior of pinch-to-zoom to show tabs in Safari >Index: Source/WebKit/Platform/spi/ios/UIKitSPI.h >=================================================================== >--- Source/WebKit/Platform/spi/ios/UIKitSPI.h (revision 247207) >+++ Source/WebKit/Platform/spi/ios/UIKitSPI.h (working copy) >@@ -1003,6 +1003,9 @@ typedef NS_OPTIONS(NSUInteger, UIDragOpe > > @interface UITextEffectsWindow : UIAutoRotatingWindow > + (UITextEffectsWindow *)sharedTextEffectsWindow; >+#if HAVE(UISCENE) >++ (UITextEffectsWindow *)sharedTextEffectsWindowForWindowScene:(UIWindowScene *)windowScene; >+#endif // HAVE(UISCENE) > @end > > @interface _UIVisualEffectLayerConfig : NSObject >Index: Source/WebKit/UIProcess/ios/WKContentViewInteraction.mm >=================================================================== >--- Source/WebKit/UIProcess/ios/WKContentViewInteraction.mm (revision 247207) >+++ Source/WebKit/UIProcess/ios/WKContentViewInteraction.mm (working copy) >@@ -5385,8 +5385,10 @@ - (void)showGlobalMenuControllerInRect:( > #if HAVE(MENU_CONTROLLER_SHOW_HIDE_API) > [controller showMenuFromView:self rect:rect]; > #else >+ ALLOW_DEPRECATED_DECLARATIONS_BEGIN > [controller setTargetRect:rect inView:self]; > [controller setMenuVisible:YES animated:YES]; >+ ALLOW_DEPRECATED_DECLARATIONS_END > #endif > } > >@@ -5396,7 +5398,9 @@ - (void)hideGlobalMenuController > #if HAVE(MENU_CONTROLLER_SHOW_HIDE_API) > [controller hideMenuFromView:self]; > #else >+ ALLOW_DEPRECATED_DECLARATIONS_BEGIN > [controller setMenuVisible:NO animated:YES]; >+ ALLOW_DEPRECATED_DECLARATIONS_END > #endif > } > >Index: Tools/ChangeLog >=================================================================== >--- Tools/ChangeLog (revision 247266) >+++ Tools/ChangeLog (working copy) >@@ -1,3 +1,13 @@ >+2019-07-09 Jonathan Bedard <jbedard@apple.com> >+ >+ [iOS 13] Enable WebKit build >+ https://bugs.webkit.org/show_bug.cgi?id=199481 >+ <rdar://problem/52619048> >+ >+ Reviewed by NOBODY (OOPS!). >+ >+ * TestWebKitAPI/Configurations/TestWebKitAPI.xcconfig: Add iOS framework stubs. >+ > 2019-07-08 Aakash Jain <aakash_jain@apple.com> > > [ews-build] Do not run unix commands for windows in PrintConfiguration >Index: Tools/TestWebKitAPI/Configurations/TestWebKitAPI.xcconfig >=================================================================== >--- Tools/TestWebKitAPI/Configurations/TestWebKitAPI.xcconfig (revision 247207) >+++ Tools/TestWebKitAPI/Configurations/TestWebKitAPI.xcconfig (working copy) >@@ -28,7 +28,13 @@ GCC_ENABLE_OBJC_EXCEPTIONS = YES; > > WK_PRIVATE_FRAMEWORKS_DIR = $(WK_PRIVATE_FRAMEWORKS_DIR_$(USE_INTERNAL_SDK)); > WK_PRIVATE_FRAMEWORKS_DIR_[sdk=mac*] = $(PROJECT_DIR)/../../WebKitLibraries/WebKitPrivateFrameworkStubs/Mac/$(MAC_OS_X_VERSION_MAJOR); >-FRAMEWORK_SEARCH_PATHS[sdk=mac*] = $(inherited) $(WK_PRIVATE_FRAMEWORK_STUBS_DIR) $(SYSTEM_LIBRARY_DIR)/PrivateFrameworks $(SYSTEM_LIBRARY_DIR)/Frameworks/WebKit.framework/Versions/A/Frameworks; >+ >+WK_TARGET_IOS_VERSION_MAJOR = $(IPHONEOS_DEPLOYMENT_TARGET:base); // e.g. iOS 9.3 => 9 >+WK_PRIVATE_FRAMEWORKS_DIR_[sdk=iphone*] = $(WK_PRIVATE_FRAMEWORKS_DIR_iphone_$(USE_INTERNAL_SDK)); >+WK_PRIVATE_FRAMEWORKS_DIR_iphone_ = $(PROJECT_DIR)/../../WebKitLibraries/WebKitPrivateFrameworkStubs/iOS/$(WK_TARGET_IOS_VERSION_MAJOR); >+ >+FRAMEWORK_SEARCH_PATHS[sdk=mac*] = $(inherited) $(WK_PRIVATE_FRAMEWORKS_DIR) $(SYSTEM_LIBRARY_DIR)/PrivateFrameworks $(SYSTEM_LIBRARY_DIR)/Frameworks/WebKit.framework/Versions/A/Frameworks; >+FRAMEWORK_SEARCH_PATHS[sdk=iphone*] = $(inherited) $(WK_PRIVATE_FRAMEWORKS_DIR); > > UNEXPORTED_SYMBOL_LDFLAGS = -Wl,-unexported_symbol -Wl,__ZN7testing4Test16TearDownTestCaseEv -Wl,-unexported_symbol -Wl,__ZN7testing4Test13SetUpTestCaseEv > >Index: WebKitLibraries/ChangeLog >=================================================================== >--- WebKitLibraries/ChangeLog (revision 247207) >+++ WebKitLibraries/ChangeLog (working copy) >@@ -1,3 +1,23 @@ >+2019-07-09 Jonathan Bedard <jbedard@apple.com> >+ >+ [iOS 13] Enable WebKit build >+ https://bugs.webkit.org/show_bug.cgi?id=199481 >+ <rdar://problem/52619048> >+ >+ Reviewed by NOBODY (OOPS!). >+ >+ Added iOS 13 framework stubs, used tbd version 3 in all new stubs. >+ >+ * WebKitPrivateFrameworkStubs/iOS/13: Added. >+ * WebKitPrivateFrameworkStubs/iOS/13/AppSupport.framework: Added. >+ * WebKitPrivateFrameworkStubs/iOS/13/AssertionServices.framework: Added. >+ * WebKitPrivateFrameworkStubs/iOS/13/AuthKit.framework: Added. >+ * WebKitPrivateFrameworkStubs/iOS/13/CorePDF.framework: Added. >+ * WebKitPrivateFrameworkStubs/iOS/13/CorePrediction.framework: Added. >+ * WebKitPrivateFrameworkStubs/iOS/13/GraphicsServices.framework: Added. >+ * WebKitPrivateFrameworkStubs/iOS/13/SafariSafeBrowsing.framework: Added. >+ * WebKitPrivateFrameworkStubs/iOS/13/URLFormatting.framework: Added. >+ > 2019-07-03 Jonathan Bedard <jbedard@apple.com> > > [Catalina] Enable WebKit build >Index: WebKitLibraries/WebKitPrivateFrameworkStubs/iOS/13/AppSupport.framework/AppSupport.tbd >=================================================================== >--- WebKitLibraries/WebKitPrivateFrameworkStubs/iOS/13/AppSupport.framework/AppSupport.tbd (nonexistent) >+++ WebKitLibraries/WebKitPrivateFrameworkStubs/iOS/13/AppSupport.framework/AppSupport.tbd (working copy) >@@ -0,0 +1,11 @@ >+--- !tapi-tbd-v3 >+archs: [ x86_64, arm64, arm64e ] >+install-name: '/System/Library/PrivateFrameworks/AppSupport.framework/AppSupport' >+objc-constraint: none >+platform: ios >+exports: >+ - >+ archs: [ x86_64, arm64, arm64e ] >+ symbols: [ CPCopyBundleIdentifierFromAuditToken ] >+ objc-classes: [ CPNetworkObserver ] >+... >Index: WebKitLibraries/WebKitPrivateFrameworkStubs/iOS/13/AssertionServices.framework/AssertionServices.tbd >=================================================================== >--- WebKitLibraries/WebKitPrivateFrameworkStubs/iOS/13/AssertionServices.framework/AssertionServices.tbd (nonexistent) >+++ WebKitLibraries/WebKitPrivateFrameworkStubs/iOS/13/AssertionServices.framework/AssertionServices.tbd (working copy) >@@ -0,0 +1,10 @@ >+--- !tapi-tbd-v3 >+archs: [ x86_64, arm64, arm64e ] >+install-name: '/System/Library/PrivateFrameworks/AssertionServices.framework/AssertionServices' >+objc-constraint: none >+platform: ios >+exports: >+ - archs: [ x86_64, arm64, arm64e ] >+ objc-classes: [ BKSApplicationStateMonitor, BKSProcessAssertion ] >+ symbols: [ _BKSApplicationStateMostElevatedStateForProcessIDKey, _BKSApplicationStateProcessIDKey ] >+... >Index: WebKitLibraries/WebKitPrivateFrameworkStubs/iOS/13/AuthKit.framework/AuthKit.tbd >=================================================================== >--- WebKitLibraries/WebKitPrivateFrameworkStubs/iOS/13/AuthKit.framework/AuthKit.tbd (nonexistent) >+++ WebKitLibraries/WebKitPrivateFrameworkStubs/iOS/13/AuthKit.framework/AuthKit.tbd (working copy) >@@ -0,0 +1,8 @@ >+--- !tapi-tbd-v3 >+archs: [ x86_64, arm64, arm64e ] >+install-name: '/System/Library/PrivateFrameworks/AuthKit.framework/AuthKit' >+platform: ios >+exports: >+ - archs: [ x86_64, arm64, arm64e ] >+ objc-classes: [ AKAuthorizationController ] >+... >Index: WebKitLibraries/WebKitPrivateFrameworkStubs/iOS/13/CorePDF.framework/CorePDF.tbd >=================================================================== >--- WebKitLibraries/WebKitPrivateFrameworkStubs/iOS/13/CorePDF.framework/CorePDF.tbd (nonexistent) >+++ WebKitLibraries/WebKitPrivateFrameworkStubs/iOS/13/CorePDF.framework/CorePDF.tbd (working copy) >@@ -0,0 +1,10 @@ >+--- !tapi-tbd-v3 >+archs: [ x86_64, arm64, arm64e ] >+install-name: '/System/Library/PrivateFrameworks/CorePDF.framework/CorePDF' >+objc-constraint: none >+platform: ios >+exports: >+ - >+ archs: [ x86_64, arm64, arm64e ] >+ objc-classes: [ UIPDFDocument, UIPDFLinkAnnotation, UIPDFPageView, UIPDFSelection ] >+... >Index: WebKitLibraries/WebKitPrivateFrameworkStubs/iOS/13/CorePrediction.framework/CorePrediction.tbd >=================================================================== >--- WebKitLibraries/WebKitPrivateFrameworkStubs/iOS/13/CorePrediction.framework/CorePrediction.tbd (nonexistent) >+++ WebKitLibraries/WebKitPrivateFrameworkStubs/iOS/13/CorePrediction.framework/CorePrediction.tbd (working copy) >@@ -0,0 +1,10 @@ >+--- !tapi-tbd-v3 >+archs: [ x86_64, arm64, arm64e ] >+install-name: '/System/Library/PrivateFrameworks/CorePrediction.framework/CorePrediction' >+objc-constraint: none >+platform: ios >+exports: >+ - >+ archs: [ x86_64, arm64, arm64e ] >+ symbols: [ _svm_load_model, _svm_predict_values ] >+... >Index: WebKitLibraries/WebKitPrivateFrameworkStubs/iOS/13/GraphicsServices.framework/GraphicsServices.tbd >=================================================================== >--- WebKitLibraries/WebKitPrivateFrameworkStubs/iOS/13/GraphicsServices.framework/GraphicsServices.tbd (nonexistent) >+++ WebKitLibraries/WebKitPrivateFrameworkStubs/iOS/13/GraphicsServices.framework/GraphicsServices.tbd (working copy) >@@ -0,0 +1,12 @@ >+--- !tapi-tbd-v3 >+archs: [ x86_64, arm64, arm64e ] >+install-name: '/System/Library/PrivateFrameworks/GraphicsServices.framework/GraphicsServices' >+objc-constraint: none >+platform: ios >+exports: >+ - >+ archs: [ x86_64, arm64, arm64e ] >+ symbols: [ _GSCurrentEventTimestamp, _GSEventIsHardwareKeyboardAttached, _GSEventSetHardwareKeyboardAttached, >+ _GSFontInitialize, _GSFontPurgeFontCache, _GSInitialize, _GSKeyboardGetModifierState, >+ _GSSystemRootDirectory, _kGSEventHardwareKeyboardAvailabilityChangedNotification ] >+... >Index: WebKitLibraries/WebKitPrivateFrameworkStubs/iOS/13/SafariSafeBrowsing.framework/SafariSafeBrowsing.tbd >=================================================================== >--- WebKitLibraries/WebKitPrivateFrameworkStubs/iOS/13/SafariSafeBrowsing.framework/SafariSafeBrowsing.tbd (nonexistent) >+++ WebKitLibraries/WebKitPrivateFrameworkStubs/iOS/13/SafariSafeBrowsing.framework/SafariSafeBrowsing.tbd (working copy) >@@ -0,0 +1,11 @@ >+--- !tapi-tbd-v3 >+archs: [ x86_64, arm64, arm64e ] >+install-name: '/System/Library/PrivateFrameworks/SafariSafeBrowsing.framework/SafariSafeBrowsing' >+objc-constraint: none >+platform: ios >+exports: >+ - >+ archs: [ x86_64, arm64, arm64e ] >+ symbols: [ _SSBProviderTencent, _ZN12SafeBrowsing7Service4mainEv ] >+ objc-classes: [ SSBLookupContext, SSBLookupResult, SSBServiceLookupResult ] >+... >Index: WebKitLibraries/WebKitPrivateFrameworkStubs/iOS/13/URLFormatting.framework/URLFormatting.tbd >=================================================================== >--- WebKitLibraries/WebKitPrivateFrameworkStubs/iOS/13/URLFormatting.framework/URLFormatting.tbd (nonexistent) >+++ WebKitLibraries/WebKitPrivateFrameworkStubs/iOS/13/URLFormatting.framework/URLFormatting.tbd (working copy) >@@ -0,0 +1,6 @@ >+--- !tapi-tbd-v3 >+archs: [ x86_64, arm64, arm64e ] >+install-name: '/System/Library/PrivateFrameworks/URLFormatting.framework/URLFormatting' >+objc-constraint: none >+platform: ios >+...
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Formatted Diff
|
Diff
Attachments on
bug 199481
:
373752
|
373756
|
373787
|
373791
|
373879
|
379002