⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 244804 in webkit


Ignore:
Timestamp:
Apr 30, 2019, 2:24:23 PM (7 years ago)
Author:
Alan Coon
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

Location:
branches/safari-607-branch/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/safari-607-branch/Source/WebCore/ChangeLog

    r244798 r244804  
     12019-04-30  Alan Coon  <alancoon@apple.com>
     2
     3        Cherry-pick r244727. rdar://problem/50344746
     4
     5    [Apple Pay] Increment the API version from 6 to 7
     6    https://bugs.webkit.org/show_bug.cgi?id=197041
     7    <rdar://problem/49986625>
     8   
     9    Reviewed by Geoffrey Garen.
     10   
     11    * Modules/applepay/PaymentCoordinatorClient.cpp:
     12    (WebCore::PaymentCoordinatorClient::supportsVersion):
     13   
     14   
     15    git-svn-id: https://svn.webkit.org/repository/webkit/trunk@244727 268f45cc-cd09-0410-ab3c-d52691b4dbfc
     16
     17    2019-04-28  Andy Estes  <aestes@apple.com>
     18
     19            [Apple Pay] Increment the API version from 6 to 7
     20            https://bugs.webkit.org/show_bug.cgi?id=197041
     21            <rdar://problem/49986625>
     22
     23            Reviewed by Geoffrey Garen.
     24
     25            * Modules/applepay/PaymentCoordinatorClient.cpp:
     26            (WebCore::PaymentCoordinatorClient::supportsVersion):
     27
    1282019-04-24  Alan Coon  <alancoon@apple.com>
    229
  • branches/safari-607-branch/Source/WebCore/Modules/applepay/PaymentCoordinatorClient.cpp

    r241159 r244804  
    3939#elif !ENABLE(APPLE_PAY_SESSION_V4)
    4040    static const unsigned currentVersion = 3;
     41#elif !ENABLE(APPLE_PAY_SESSION_V7)
     42    static const unsigned currentVersion = 6;
    4143#else
    42     static const unsigned currentVersion = 6;
     44    static const unsigned currentVersion = 7;
    4345#endif
    4446
Note: See TracChangeset for help on using the changeset viewer.