Title: [226243] trunk/Source/WebKit
Revision
226243
Author
aes...@apple.com
Date
2017-12-21 14:47:16 -0800 (Thu, 21 Dec 2017)

Log Message

Address additional review feedback after r226182.

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

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (226242 => 226243)


--- trunk/Source/WebKit/ChangeLog	2017-12-21 22:32:14 UTC (rev 226242)
+++ trunk/Source/WebKit/ChangeLog	2017-12-21 22:47:16 UTC (rev 226243)
@@ -1,3 +1,10 @@
+2017-12-21  Andy Estes  <aes...@apple.com>
+
+        Address additional review feedback after r226182.
+
+        * UIProcess/ApplePay/cocoa/WebPaymentCoordinatorProxyCocoa.mm:
+        (WebKit::toPKPaymentRequest):
+
 2017-12-21  Jeremy Jones  <jere...@apple.com>
 
         Update FULLSCREEN_API feature defines.

Modified: trunk/Source/WebKit/UIProcess/ApplePay/cocoa/WebPaymentCoordinatorProxyCocoa.mm (226242 => 226243)


--- trunk/Source/WebKit/UIProcess/ApplePay/cocoa/WebPaymentCoordinatorProxyCocoa.mm	2017-12-21 22:32:14 UTC (rev 226242)
+++ trunk/Source/WebKit/UIProcess/ApplePay/cocoa/WebPaymentCoordinatorProxyCocoa.mm	2017-12-21 22:47:16 UTC (rev 226243)
@@ -480,7 +480,7 @@
 #endif
 
 #if (PLATFORM(MAC) && __MAC_OS_X_VERSION_MIN_REQUIRED >= 101300 && __MAC_OS_X_VERSION_MAX_ALLOWED >= 101304) \
-    || (PLATFORM(IOS) && __IPHONE_OS_VERSION_MIN_REQUIRED >= 110000 && __IPHONE_OS_VERSION_MAX_ALLOWED >= 110300)
+    || (PLATFORM(IOS) && __IPHONE_OS_VERSION_MIN_REQUIRED >= 110300 && __IPHONE_OS_VERSION_MAX_ALLOWED >= 110300)
 static PKPaymentRequestAPIType toAPIType(WebCore::ApplePaySessionPaymentRequest::Requester requester)
 {
     switch (requester) {
@@ -508,7 +508,7 @@
         [result setThumbnailURL:linkIconURLs[0]];
 
 #if (PLATFORM(MAC) && __MAC_OS_X_VERSION_MIN_REQUIRED >= 101300 && __MAC_OS_X_VERSION_MAX_ALLOWED >= 101304) \
-    || (PLATFORM(IOS) && __IPHONE_OS_VERSION_MIN_REQUIRED >= 110000 && __IPHONE_OS_VERSION_MAX_ALLOWED >= 110300)
+    || (PLATFORM(IOS) && __IPHONE_OS_VERSION_MIN_REQUIRED >= 110300 && __IPHONE_OS_VERSION_MAX_ALLOWED >= 110300)
     [result setAPIType:toAPIType(paymentRequest.requester())];
 #endif
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to