Title: [218460] trunk/Source/WebKit2
Revision
218460
Author
[email protected]
Date
2017-06-17 17:10:41 -0700 (Sat, 17 Jun 2017)

Log Message

Unreviewed, follow-up build fix after r218457.

* UIProcess/ApplePay/cocoa/WebPaymentCoordinatorProxyCocoa.mm:
(WebKit::WebPaymentCoordinatorProxy::platformCanMakePaymentsWithActiveCard):

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (218459 => 218460)


--- trunk/Source/WebKit2/ChangeLog	2017-06-17 23:55:41 UTC (rev 218459)
+++ trunk/Source/WebKit2/ChangeLog	2017-06-18 00:10:41 UTC (rev 218460)
@@ -7,6 +7,13 @@
 
 2017-06-17  Chris Dumez  <[email protected]>
 
+        Unreviewed, follow-up build fix after r218457.
+
+        * UIProcess/ApplePay/cocoa/WebPaymentCoordinatorProxyCocoa.mm:
+        (WebKit::WebPaymentCoordinatorProxy::platformCanMakePaymentsWithActiveCard):
+
+2017-06-17  Chris Dumez  <[email protected]>
+
         Use WTF::Function instead of std::function in WebKit2/
         https://bugs.webkit.org/show_bug.cgi?id=173504
 

Modified: trunk/Source/WebKit2/UIProcess/ApplePay/cocoa/WebPaymentCoordinatorProxyCocoa.mm (218459 => 218460)


--- trunk/Source/WebKit2/UIProcess/ApplePay/cocoa/WebPaymentCoordinatorProxyCocoa.mm	2017-06-17 23:55:41 UTC (rev 218459)
+++ trunk/Source/WebKit2/UIProcess/ApplePay/cocoa/WebPaymentCoordinatorProxyCocoa.mm	2017-06-18 00:10:41 UTC (rev 218460)
@@ -311,7 +311,7 @@
         return;
     }
 
-    softLink_PassKit_PKCanMakePaymentsWithMerchantIdentifierDomainAndSourceApplication(merchantIdentifier, domainName, m_webPageProxy.process().processPool().configuration().sourceApplicationSecondaryIdentifier(), BlockPtr<void (BOOL, NSError *)>::fromCallable([completionHandler = WTFMove(completionHandler)](BOOL canMakePayments, NSError *error) {
+    softLink_PassKit_PKCanMakePaymentsWithMerchantIdentifierDomainAndSourceApplication(merchantIdentifier, domainName, m_webPageProxy.process().processPool().configuration().sourceApplicationSecondaryIdentifier(), BlockPtr<void (BOOL, NSError *)>::fromCallable([completionHandler = WTFMove(completionHandler)](BOOL canMakePayments, NSError *error) mutable {
         if (error)
             LOG_ERROR("PKCanMakePaymentsWithMerchantIdentifierAndDomain error %@", error);
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to