Title: [244727] trunk/Source/WebCore
Revision
244727
Author
[email protected]
Date
2019-04-28 22:17:08 -0700 (Sun, 28 Apr 2019)

Log Message

[Apple Pay] Increment the API version from 6 to 7
https://bugs.webkit.org/show_bug.cgi?id=197041
<rdar://problem/49986625>

Reviewed by Geoffrey Garen.

* Modules/applepay/PaymentCoordinatorClient.cpp:
(WebCore::PaymentCoordinatorClient::supportsVersion):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (244726 => 244727)


--- trunk/Source/WebCore/ChangeLog	2019-04-28 19:28:09 UTC (rev 244726)
+++ trunk/Source/WebCore/ChangeLog	2019-04-29 05:17:08 UTC (rev 244727)
@@ -1,5 +1,16 @@
 2019-04-28  Andy Estes  <[email protected]>
 
+        [Apple Pay] Increment the API version from 6 to 7
+        https://bugs.webkit.org/show_bug.cgi?id=197041
+        <rdar://problem/49986625>
+
+        Reviewed by Geoffrey Garen.
+
+        * Modules/applepay/PaymentCoordinatorClient.cpp:
+        (WebCore::PaymentCoordinatorClient::supportsVersion):
+
+2019-04-28  Andy Estes  <[email protected]>
+
         Fix the watchOS engineering build.
 
         * Modules/webgpu/WebGPUComputePassEncoder.cpp: Included Logging.h.

Modified: trunk/Source/WebCore/Modules/applepay/PaymentCoordinatorClient.cpp (244726 => 244727)


--- trunk/Source/WebCore/Modules/applepay/PaymentCoordinatorClient.cpp	2019-04-28 19:28:09 UTC (rev 244726)
+++ trunk/Source/WebCore/Modules/applepay/PaymentCoordinatorClient.cpp	2019-04-29 05:17:08 UTC (rev 244727)
@@ -38,8 +38,10 @@
     static const unsigned currentVersion = 2;
 #elif !ENABLE(APPLE_PAY_SESSION_V4)
     static const unsigned currentVersion = 3;
+#elif !ENABLE(APPLE_PAY_SESSION_V7)
+    static const unsigned currentVersion = 6;
 #else
-    static const unsigned currentVersion = 6;
+    static const unsigned currentVersion = 7;
 #endif
 
     return version <= currentVersion;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to