| Index: chrome/browser/ui/views/payments/shipping_list_view_controller.h
|
| diff --git a/chrome/browser/ui/views/payments/shipping_list_view_controller.h b/chrome/browser/ui/views/payments/shipping_list_view_controller.h
|
| index 9b3d441931e959a42715e3f467bad94b4b6b3b6e..971570ac3a27be5f0bdcc00f20e01c1915f09b39 100644
|
| --- a/chrome/browser/ui/views/payments/shipping_list_view_controller.h
|
| +++ b/chrome/browser/ui/views/payments/shipping_list_view_controller.h
|
| @@ -7,7 +7,6 @@
|
|
|
| #include "base/macros.h"
|
| #include "chrome/browser/ui/views/payments/payment_request_sheet_controller.h"
|
| -#include "ui/views/controls/button/vector_icon_button_delegate.h"
|
|
|
| namespace payments {
|
|
|
| @@ -16,8 +15,7 @@ class PaymentRequestDialogView;
|
|
|
| // The PaymentRequestSheetController subtype for the Shipping address list
|
| // screen of the Payment Request flow.
|
| -class ShippingListViewController : public PaymentRequestSheetController,
|
| - public views::VectorIconButtonDelegate {
|
| +class ShippingListViewController : public PaymentRequestSheetController {
|
| public:
|
| // Does not take ownership of the arguments, which should outlive this object.
|
| ShippingListViewController(PaymentRequest* request,
|
| @@ -28,9 +26,6 @@ class ShippingListViewController : public PaymentRequestSheetController,
|
| std::unique_ptr<views::View> CreateView() override;
|
|
|
| private:
|
| - // views::VectorIconButtonDelegate:
|
| - void ButtonPressed(views::Button* sender, const ui::Event& event) override;
|
| -
|
| DISALLOW_COPY_AND_ASSIGN(ShippingListViewController);
|
| };
|
|
|
|
|