Bug 196180

Summary: [Apple Pay] Remove the AvailablePaymentNetworks synchronous message
Product: WebKit Reporter: Andy Estes <aestes>
Component: New BugsAssignee: Andy Estes <aestes>
Status: RESOLVED FIXED    
Severity: Normal CC: achristensen, andersca, beidson, cdumez, commit-queue, thorton, timothy, webkit-bug-importer, youennf
Priority: P2 Keywords: InRadar
Version: WebKit Nightly Build   
Hardware: Unspecified   
OS: Unspecified   
Attachments:
Description Flags
Patch
none
Patch
none
Patch none

Description Andy Estes 2019-03-23 15:39:32 PDT
[Apple Pay] Remove the AvailablePaymentNetworks synchronous message
Comment 1 Andy Estes 2019-03-23 15:42:04 PDT Comment hidden (obsolete)
Comment 2 Andy Estes 2019-03-24 13:19:39 PDT
Created attachment 365837 [details]
Patch
Comment 3 youenn fablet 2019-03-25 08:41:43 PDT
Comment on attachment 365837 [details]
Patch

View in context: https://bugs.webkit.org/attachment.cgi?id=365837&action=review

> Source/WebKit/WebProcess/ApplePay/cocoa/WebPaymentCoordinatorCocoa.mm:46
> +        result.uncheckedAppend(network);

Can we add them to m_availablePaymentNetworks directly and return void?
Or better, return a AvailablePaymentNetworksSet directly and make this a free function or a static WebPaymentCoordinator one.
We could also change WebPaymentCoordinator::availablePaymentNetworks():
if (!m_availablePaymentNetworks)
    m_availablePaymentNetworks = platformAvailablePaymentNetworks();
return *m_availablePaymentNetworks;

> Source/WebKit/WebProcess/WebPage/mac/WKAccessibilityWebPageObjectBase.mm:133
> +    if (WebCore::AXObjectCache* cache = [self axObjectCache]) {

auto?
Comment 4 Andy Estes 2019-03-25 10:35:07 PDT
Created attachment 365874 [details]
Patch
Comment 5 Andy Estes 2019-03-25 10:48:21 PDT
(In reply to youenn fablet from comment #3)
> Comment on attachment 365837 [details]
> Patch
> 
> View in context:
> https://bugs.webkit.org/attachment.cgi?id=365837&action=review
> 
> > Source/WebKit/WebProcess/ApplePay/cocoa/WebPaymentCoordinatorCocoa.mm:46
> > +        result.uncheckedAppend(network);
> 
> Can we add them to m_availablePaymentNetworks directly and return void?
> Or better, return a AvailablePaymentNetworksSet directly and make this a
> free function or a static WebPaymentCoordinator one.
> We could also change WebPaymentCoordinator::availablePaymentNetworks():
> if (!m_availablePaymentNetworks)
>     m_availablePaymentNetworks = platformAvailablePaymentNetworks();
> return *m_availablePaymentNetworks;

I got rid of availablePaymentNetworks entirely and moved its logic into validatedPaymentNetwork. I made platformAvailablePaymentNetworks return a AvailablePaymentNetworksSet as you suggested.

> 
> > Source/WebKit/WebProcess/WebPage/mac/WKAccessibilityWebPageObjectBase.mm:133
> > +    if (WebCore::AXObjectCache* cache = [self axObjectCache]) {
> 
> auto?

Yep. Thanks for reviewing!
Comment 6 WebKit Commit Bot 2019-03-25 11:26:15 PDT
Comment on attachment 365874 [details]
Patch

Clearing flags on attachment: 365874

Committed r243443: <https://trac.webkit.org/changeset/243443>
Comment 7 WebKit Commit Bot 2019-03-25 11:26:17 PDT
All reviewed patches have been landed.  Closing bug.
Comment 8 Radar WebKit Bug Importer 2019-03-25 11:27:24 PDT
<rdar://problem/49222105>