Changeset 223188 in webkit


Ignore:
Timestamp:
Oct 11, 2017 9:12:07 AM (7 years ago)
Author:
aestes@apple.com
Message:

Try to fix the Sierra build after r223163.

  • Modules/applepay/paymentrequest/ApplePayPaymentHandler.cpp:

(WebCore::convertAndValidate):

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/Modules/applepay/paymentrequest/ApplePayPaymentHandler.cpp

    r223163 r223188  
    8585    lineItem.type = item.pending ? ApplePaySessionPaymentRequest::LineItem::Type::Pending : ApplePaySessionPaymentRequest::LineItem::Type::Final;
    8686    lineItem.label = item.label;
    87     return lineItem;
     87    return { WTFMove(lineItem) };
    8888}
    8989
     
    9898        result.uncheckedAppend(convertedLineItem.releaseReturnValue());
    9999    }
    100     return result;
     100    return { WTFMove(result) };
    101101}
    102102
     
    136136    result.label = shippingOption.label;
    137137    result.identifier = shippingOption.id;
    138     return result;
     138    return { WTFMove(result) };
    139139}
    140140
Note: See TracChangeset for help on using the changeset viewer.