Title: [244804] branches/safari-607-branch/Source/WebCore
Revision
244804
Author
[email protected]
Date
2019-04-30 14:24:23 -0700 (Tue, 30 Apr 2019)

Log Message

Cherry-pick r244727. rdar://problem/50344746

    [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):

    git-svn-id: https://svn.webkit.org/repository/webkit/trunk@244727 268f45cc-cd09-0410-ab3c-d52691b4dbfc

Modified Paths

Diff

Modified: branches/safari-607-branch/Source/WebCore/ChangeLog (244803 => 244804)


--- branches/safari-607-branch/Source/WebCore/ChangeLog	2019-04-30 21:24:19 UTC (rev 244803)
+++ branches/safari-607-branch/Source/WebCore/ChangeLog	2019-04-30 21:24:23 UTC (rev 244804)
@@ -1,3 +1,30 @@
+2019-04-30  Alan Coon  <[email protected]>
+
+        Cherry-pick r244727. rdar://problem/50344746
+
+    [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):
+    
+    
+    git-svn-id: https://svn.webkit.org/repository/webkit/trunk@244727 268f45cc-cd09-0410-ab3c-d52691b4dbfc
+
+    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-24  Alan Coon  <[email protected]>
 
         Revert r244120. rdar://problem/50132675

Modified: branches/safari-607-branch/Source/WebCore/Modules/applepay/PaymentCoordinatorClient.cpp (244803 => 244804)


--- branches/safari-607-branch/Source/WebCore/Modules/applepay/PaymentCoordinatorClient.cpp	2019-04-30 21:24:19 UTC (rev 244803)
+++ branches/safari-607-branch/Source/WebCore/Modules/applepay/PaymentCoordinatorClient.cpp	2019-04-30 21:24:23 UTC (rev 244804)
@@ -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