| Index: ios/chrome/browser/ui/payments/shipping_address_selection_mediator.mm
|
| diff --git a/ios/chrome/browser/ui/payments/shipping_address_selection_mediator.mm b/ios/chrome/browser/ui/payments/shipping_address_selection_mediator.mm
|
| index 4132cc60d699ea3385cb1d3c7361f6f1413fe506..086c2d3a663b3cac41bad003b53787488eed5f89 100644
|
| --- a/ios/chrome/browser/ui/payments/shipping_address_selection_mediator.mm
|
| +++ b/ios/chrome/browser/ui/payments/shipping_address_selection_mediator.mm
|
| @@ -33,7 +33,7 @@ using ::payment_request_util::GetShippingAddressLabelFromAutofillProfile;
|
| // The PaymentRequest object owning an instance of web::PaymentRequest as
|
| // provided by the page invoking the Payment Request API. This is a weak
|
| // pointer and should outlive this class.
|
| -@property(nonatomic, assign) PaymentRequest* paymentRequest;
|
| +@property(nonatomic, assign) payments::PaymentRequest* paymentRequest;
|
|
|
| // The selectable items to display in the collection.
|
| @property(nonatomic, strong) NSMutableArray<AutofillProfileItem*>* items;
|
| @@ -48,7 +48,8 @@ using ::payment_request_util::GetShippingAddressLabelFromAutofillProfile;
|
| @synthesize paymentRequest = _paymentRequest;
|
| @synthesize items = _items;
|
|
|
| -- (instancetype)initWithPaymentRequest:(PaymentRequest*)paymentRequest {
|
| +- (instancetype)initWithPaymentRequest:
|
| + (payments::PaymentRequest*)paymentRequest {
|
| self = [super init];
|
| if (self) {
|
| _paymentRequest = paymentRequest;
|
|
|