Title: [218459] trunk/Source/WebKit2
Revision
218459
Author
[email protected]
Date
2017-06-17 16:55: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 (218458 => 218459)


--- trunk/Source/WebKit2/ChangeLog	2017-06-17 22:34:28 UTC (rev 218458)
+++ trunk/Source/WebKit2/ChangeLog	2017-06-17 23:55:41 UTC (rev 218459)
@@ -1,5 +1,12 @@
 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 (218458 => 218459)


--- trunk/Source/WebKit2/UIProcess/ApplePay/cocoa/WebPaymentCoordinatorProxyCocoa.mm	2017-06-17 22:34:28 UTC (rev 218458)
+++ trunk/Source/WebKit2/UIProcess/ApplePay/cocoa/WebPaymentCoordinatorProxyCocoa.mm	2017-06-17 23:55:41 UTC (rev 218459)
@@ -311,7 +311,7 @@
         return;
     }
 
-    softLink_PassKit_PKCanMakePaymentsWithMerchantIdentifierDomainAndSourceApplication(merchantIdentifier, domainName, m_webPageProxy.process().processPool().configuration().sourceApplicationSecondaryIdentifier(), BlockPtr<void (BOOL, NSError *)>::fromCallback([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) {
         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