Title: [279292] branches/safari-612.1.20-branch/Source/WebCore/PAL
Revision
279292
Author
rubent...@apple.com
Date
2021-06-25 11:45:10 -0700 (Fri, 25 Jun 2021)

Log Message

Cherry-pick r279290. rdar://problem/79788549

    Unreviewed, fix the macOS Monterey build

    Some internal builders are still attempting to build WebKit for macOS Monterey using an SDK without the fix for
    rdar://74299451. Restore the forward staging declaration for `-initWithDataProvider:contentType:previewTitle:`
    in the meantime.

    * pal/spi/mac/QuickLookMacSPI.h:

    git-svn-id: https://svn.webkit.org/repository/webkit/trunk@279290 268f45cc-cd09-0410-ab3c-d52691b4dbfc

Modified Paths

Diff

Modified: branches/safari-612.1.20-branch/Source/WebCore/PAL/ChangeLog (279291 => 279292)


--- branches/safari-612.1.20-branch/Source/WebCore/PAL/ChangeLog	2021-06-25 18:42:51 UTC (rev 279291)
+++ branches/safari-612.1.20-branch/Source/WebCore/PAL/ChangeLog	2021-06-25 18:45:10 UTC (rev 279292)
@@ -1,3 +1,27 @@
+2021-06-25  Russell Epstein  <repst...@apple.com>
+
+        Cherry-pick r279290. rdar://problem/79788549
+
+    Unreviewed, fix the macOS Monterey build
+    
+    Some internal builders are still attempting to build WebKit for macOS Monterey using an SDK without the fix for
+    rdar://74299451. Restore the forward staging declaration for `-initWithDataProvider:contentType:previewTitle:`
+    in the meantime.
+    
+    * pal/spi/mac/QuickLookMacSPI.h:
+    
+    git-svn-id: https://svn.webkit.org/repository/webkit/trunk@279290 268f45cc-cd09-0410-ab3c-d52691b4dbfc
+
+    2021-06-25  Wenson Hsieh  <wenson_hs...@apple.com>
+
+            Unreviewed, fix the macOS Monterey build
+
+            Some internal builders are still attempting to build WebKit for macOS Monterey using an SDK without the fix for
+            rdar://74299451. Restore the forward staging declaration for `-initWithDataProvider:contentType:previewTitle:`
+            in the meantime.
+
+            * pal/spi/mac/QuickLookMacSPI.h:
+
 2021-06-20  Wenson Hsieh  <wenson_hs...@apple.com>
 
         [macOS] Rename WKVisualSearchPreviewController to WKQuickLookPreviewController

Modified: branches/safari-612.1.20-branch/Source/WebCore/PAL/pal/spi/mac/QuickLookMacSPI.h (279291 => 279292)


--- branches/safari-612.1.20-branch/Source/WebCore/PAL/pal/spi/mac/QuickLookMacSPI.h	2021-06-25 18:42:51 UTC (rev 279291)
+++ branches/safari-612.1.20-branch/Source/WebCore/PAL/pal/spi/mac/QuickLookMacSPI.h	2021-06-25 18:45:10 UTC (rev 279292)
@@ -73,17 +73,17 @@
 
 #endif // HAVE(QUICKLOOK_PREVIEW_ACTIVITY)
 
+#endif // USE(APPLE_INTERNAL_SDK)
+
 #if HAVE(QUICKLOOK_PREVIEW_ITEM_DATA_PROVIDER)
 
 @class UTType;
-@interface QLItem ()
+@interface QLItem (Staging_74299451)
 - (instancetype)initWithDataProvider:(id /* <QLPreviewItemDataProvider> */)data contentType:(UTType *)contentType previewTitle:(NSString *)previewTitle;
 @end
 
 #endif // HAVE(QUICKLOOK_PREVIEW_ITEM_DATA_PROVIDER)
 
-#endif // USE(APPLE_INTERNAL_SDK)
-
 #if HAVE(QUICKLOOK_ITEM_PREVIEW_OPTIONS)
 
 @interface QLItem (Staging_77864637)
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to