Title: [260721] trunk/Source/WebKit
Revision
260721
Author
[email protected]
Date
2020-04-25 21:57:48 -0700 (Sat, 25 Apr 2020)

Log Message

Fix internal iOS build.
https://bugs.webkit.org/show_bug.cgi?id=210521

* Shared/ApplePay/cocoa/WebPaymentCoordinatorProxyCocoa.mm:
(WebKit::WebPaymentCoordinatorProxy::platformBeginApplePaySetup):

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (260720 => 260721)


--- trunk/Source/WebKit/ChangeLog	2020-04-26 04:44:22 UTC (rev 260720)
+++ trunk/Source/WebKit/ChangeLog	2020-04-26 04:57:48 UTC (rev 260721)
@@ -1,5 +1,13 @@
 2020-04-25  Alex Christensen  <[email protected]>
 
+        Fix internal iOS build.
+        https://bugs.webkit.org/show_bug.cgi?id=210521
+
+        * Shared/ApplePay/cocoa/WebPaymentCoordinatorProxyCocoa.mm:
+        (WebKit::WebPaymentCoordinatorProxy::platformBeginApplePaySetup):
+
+2020-04-25  Alex Christensen  <[email protected]>
+
         Move ApplePay code from WebKitAdditions to WebCore and WebKit
         https://bugs.webkit.org/show_bug.cgi?id=210521
 

Modified: trunk/Source/WebKit/Shared/ApplePay/cocoa/WebPaymentCoordinatorProxyCocoa.mm (260720 => 260721)


--- trunk/Source/WebKit/Shared/ApplePay/cocoa/WebPaymentCoordinatorProxyCocoa.mm	2020-04-26 04:44:22 UTC (rev 260720)
+++ trunk/Source/WebKit/Shared/ApplePay/cocoa/WebPaymentCoordinatorProxyCocoa.mm	2020-04-26 04:57:48 UTC (rev 260721)
@@ -365,7 +365,7 @@
 
 void WebPaymentCoordinatorProxy::platformBeginApplePaySetup(const PaymentSetupConfiguration& configuration, const PaymentSetupFeatures& features, Messages::WebPaymentCoordinatorProxy::BeginApplePaySetup::AsyncReply&& reply)
 {
-    UIViewController *presentingViewController = m_paymentCoordinatorProxy.m_client.paymentCoordinatorPresentingViewController(m_paymentCoordinatorProxy);
+    UIViewController *presentingViewController = m_client.paymentCoordinatorPresentingViewController(*this);
     if (!presentingViewController) {
         reply(false);
         return;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to