| Index: chrome/browser/ui/views/payments/shipping_option_view_controller.cc
|
| diff --git a/chrome/browser/ui/views/payments/shipping_option_view_controller.cc b/chrome/browser/ui/views/payments/shipping_option_view_controller.cc
|
| index df0bc625d41b6b414638029bcbb37ca63b4f4df7..bc3f9993dcb8266ce166e00020d599ac7a1409fc 100644
|
| --- a/chrome/browser/ui/views/payments/shipping_option_view_controller.cc
|
| +++ b/chrome/browser/ui/views/payments/shipping_option_view_controller.cc
|
| @@ -43,7 +43,12 @@ class ShippingOptionItem : public PaymentRequestItemList::Item {
|
| }
|
| }
|
|
|
| - bool CanBeSelected() const override {
|
| + bool IsDisabled() override {
|
| + // Shipping options are vetted by the website; none are disabled.
|
| + return false;
|
| + }
|
| +
|
| + bool CanBeSelected() override {
|
| // Shipping options are vetted by the website; they're all OK to select.
|
| return true;
|
| }
|
|
|