| Index: ios/chrome/browser/ui/payments/shipping_option_selection_coordinator.mm
|
| diff --git a/ios/chrome/browser/ui/payments/shipping_option_selection_coordinator.mm b/ios/chrome/browser/ui/payments/shipping_option_selection_coordinator.mm
|
| index 44c1d703cd4a3233bdd8ef14f579e57153b2c7f4..d81b2af03dadd70e8be88e93403b003697b5ba7d 100644
|
| --- a/ios/chrome/browser/ui/payments/shipping_option_selection_coordinator.mm
|
| +++ b/ios/chrome/browser/ui/payments/shipping_option_selection_coordinator.mm
|
| @@ -85,7 +85,7 @@ const int64_t kDelegateNotificationDelayInNanoSeconds = 0.2 * NSEC_PER_SEC;
|
|
|
| #pragma mark - PaymentRequestSelectorViewControllerDelegate
|
|
|
| -- (void)paymentRequestSelectorViewController:
|
| +- (BOOL)paymentRequestSelectorViewController:
|
| (PaymentRequestSelectorViewController*)controller
|
| didSelectItemAtIndex:(NSUInteger)index {
|
| // Update the data source with the selection.
|
| @@ -94,6 +94,7 @@ const int64_t kDelegateNotificationDelayInNanoSeconds = 0.2 * NSEC_PER_SEC;
|
| DCHECK(index < self.paymentRequest->shipping_options().size());
|
| [self delayedNotifyDelegateOfSelection:self.paymentRequest
|
| ->shipping_options()[index]];
|
| + return YES;
|
| }
|
|
|
| - (void)paymentRequestSelectorViewControllerDidFinish:
|
|
|