Title: [279290] trunk/Source/WebCore/PAL
Revision
279290
Author
[email protected]
Date
2021-06-25 11:08:52 -0700 (Fri, 25 Jun 2021)

Log Message

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:

Modified Paths

Diff

Modified: trunk/Source/WebCore/PAL/ChangeLog (279289 => 279290)


--- trunk/Source/WebCore/PAL/ChangeLog	2021-06-25 17:55:19 UTC (rev 279289)
+++ trunk/Source/WebCore/PAL/ChangeLog	2021-06-25 18:08:52 UTC (rev 279290)
@@ -1,3 +1,13 @@
+2021-06-25  Wenson Hsieh  <[email protected]>
+
+        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-25  Ryan Haddad  <[email protected]>
 
         Unreviewed, reverting r279208.

Modified: trunk/Source/WebCore/PAL/pal/spi/mac/QuickLookMacSPI.h (279289 => 279290)


--- trunk/Source/WebCore/PAL/pal/spi/mac/QuickLookMacSPI.h	2021-06-25 17:55:19 UTC (rev 279289)
+++ trunk/Source/WebCore/PAL/pal/spi/mac/QuickLookMacSPI.h	2021-06-25 18:08:52 UTC (rev 279290)
@@ -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
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to