Title: [289624] trunk/Source/WebKit
Revision
289624
Author
wenson_hs...@apple.com
Date
2022-02-11 09:11:00 -0800 (Fri, 11 Feb 2022)

Log Message

Unreviewed, non-unified build fixes in WKPaymentAuthorizationDelegate

Include several missing headers.

* Platform/cocoa/WKPaymentAuthorizationDelegate.h:
* Platform/cocoa/WKPaymentAuthorizationDelegate.mm:

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (289623 => 289624)


--- trunk/Source/WebKit/ChangeLog	2022-02-11 17:01:52 UTC (rev 289623)
+++ trunk/Source/WebKit/ChangeLog	2022-02-11 17:11:00 UTC (rev 289624)
@@ -1,5 +1,14 @@
 2022-02-11  Wenson Hsieh  <wenson_hs...@apple.com>
 
+        Unreviewed, non-unified build fixes in WKPaymentAuthorizationDelegate
+
+        Include several missing headers.
+
+        * Platform/cocoa/WKPaymentAuthorizationDelegate.h:
+        * Platform/cocoa/WKPaymentAuthorizationDelegate.mm:
+
+2022-02-11  Wenson Hsieh  <wenson_hs...@apple.com>
+
         [iOS] Add support for a "markup image" item in the callout bar when selecting a single image
         https://bugs.webkit.org/show_bug.cgi?id=236415
         rdar://88714333

Modified: trunk/Source/WebKit/Platform/cocoa/WKPaymentAuthorizationDelegate.h (289623 => 289624)


--- trunk/Source/WebKit/Platform/cocoa/WKPaymentAuthorizationDelegate.h	2022-02-11 17:01:52 UTC (rev 289623)
+++ trunk/Source/WebKit/Platform/cocoa/WKPaymentAuthorizationDelegate.h	2022-02-11 17:11:00 UTC (rev 289624)
@@ -28,6 +28,7 @@
 #import <pal/spi/cocoa/PassKitSPI.h>
 #import <wtf/BlockPtr.h>
 #import <wtf/RetainPtr.h>
+#import <wtf/WeakPtr.h>
 
 OBJC_CLASS NSArray;
 OBJC_CLASS NSError;

Modified: trunk/Source/WebKit/Platform/cocoa/WKPaymentAuthorizationDelegate.mm (289623 => 289624)


--- trunk/Source/WebKit/Platform/cocoa/WKPaymentAuthorizationDelegate.mm	2022-02-11 17:01:52 UTC (rev 289623)
+++ trunk/Source/WebKit/Platform/cocoa/WKPaymentAuthorizationDelegate.mm	2022-02-11 17:11:00 UTC (rev 289624)
@@ -28,11 +28,16 @@
 
 #if USE(PASSKIT) && ENABLE(APPLE_PAY)
 
+#import "PaymentAuthorizationPresenter.h"
 #import <WebCore/ApplePayShippingMethod.h>
 #import <WebCore/Payment.h>
 #import <WebCore/PaymentMethod.h>
 #import <WebCore/PaymentSessionError.h>
+#import <wtf/RunLoop.h>
+#import <wtf/URL.h>
 
+#import <pal/cocoa/PassKitSoftLink.h>
+
 @implementation WKPaymentAuthorizationDelegate {
     RetainPtr<NSArray<PKPaymentSummaryItem *>> _summaryItems;
 #if HAVE(PASSKIT_DEFAULT_SHIPPING_METHOD)
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to