| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_BROWSER_UI_VIEWS_PAYMENTS_PAYMENT_SHEET_VIEW_CONTROLLER_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_PAYMENTS_PAYMENT_SHEET_VIEW_CONTROLLER_H_ |
| 6 #define CHROME_BROWSER_UI_VIEWS_PAYMENTS_PAYMENT_SHEET_VIEW_CONTROLLER_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_PAYMENTS_PAYMENT_SHEET_VIEW_CONTROLLER_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 | 9 |
| 10 #include "base/macros.h" | 10 #include "base/macros.h" |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 class PaymentSheetViewController : public PaymentRequestSheetController, | 21 class PaymentSheetViewController : public PaymentRequestSheetController, |
| 22 public PaymentRequest::Observer { | 22 public PaymentRequest::Observer { |
| 23 public: | 23 public: |
| 24 // Does not take ownership of the arguments, which should outlive this object. | 24 // Does not take ownership of the arguments, which should outlive this object. |
| 25 PaymentSheetViewController(PaymentRequest* request, | 25 PaymentSheetViewController(PaymentRequest* request, |
| 26 PaymentRequestDialogView* dialog); | 26 PaymentRequestDialogView* dialog); |
| 27 ~PaymentSheetViewController() override; | 27 ~PaymentSheetViewController() override; |
| 28 | 28 |
| 29 // PaymentRequestSheetController: | 29 // PaymentRequestSheetController: |
| 30 std::unique_ptr<views::View> CreateView() override; | 30 std::unique_ptr<views::View> CreateView() override; |
| 31 std::unique_ptr<views::Button> CreatePrimaryButton() override; | |
| 32 | 31 |
| 33 // PaymentRequest::Observer: | 32 // PaymentRequest::Observer: |
| 34 void OnSelectedInformationChanged() override; | 33 void OnSelectedInformationChanged() override; |
| 35 | 34 |
| 36 private: | 35 private: |
| 37 // PaymentRequestSheetController: | 36 // PaymentRequestSheetController: |
| 37 std::unique_ptr<views::Button> CreatePrimaryButton() override; |
| 38 std::unique_ptr<views::View> CreateExtraFooterView() override; |
| 38 void ButtonPressed(views::Button* sender, const ui::Event& event) override; | 39 void ButtonPressed(views::Button* sender, const ui::Event& event) override; |
| 39 | 40 |
| 40 void UpdatePayButtonState(bool enabled); | 41 void UpdatePayButtonState(bool enabled); |
| 41 | 42 |
| 42 std::unique_ptr<views::View> CreateOrderSummarySectionContent(); | 43 std::unique_ptr<views::View> CreateOrderSummarySectionContent(); |
| 43 std::unique_ptr<views::View> CreateShippingSectionContent(); | 44 std::unique_ptr<views::View> CreateShippingSectionContent(); |
| 44 std::unique_ptr<views::Button> CreateShippingRow(); | 45 std::unique_ptr<views::Button> CreateShippingRow(); |
| 45 std::unique_ptr<views::Button> CreatePaymentSheetSummaryRow(); | 46 std::unique_ptr<views::Button> CreatePaymentSheetSummaryRow(); |
| 46 std::unique_ptr<views::Button> CreatePaymentMethodRow(); | 47 std::unique_ptr<views::Button> CreatePaymentMethodRow(); |
| 47 std::unique_ptr<views::View> CreateContactInfoSectionContent(); | 48 std::unique_ptr<views::View> CreateContactInfoSectionContent(); |
| 48 std::unique_ptr<views::Button> CreateContactInfoRow(); | 49 std::unique_ptr<views::Button> CreateContactInfoRow(); |
| 49 | 50 |
| 50 views::Button* pay_button_; | 51 views::Button* pay_button_; |
| 51 | 52 |
| 52 const int widest_name_column_view_width_; | 53 const int widest_name_column_view_width_; |
| 53 | 54 |
| 54 DISALLOW_COPY_AND_ASSIGN(PaymentSheetViewController); | 55 DISALLOW_COPY_AND_ASSIGN(PaymentSheetViewController); |
| 55 }; | 56 }; |
| 56 | 57 |
| 57 } // namespace payments | 58 } // namespace payments |
| 58 | 59 |
| 59 #endif // CHROME_BROWSER_UI_VIEWS_PAYMENTS_PAYMENT_SHEET_VIEW_CONTROLLER_H_ | 60 #endif // CHROME_BROWSER_UI_VIEWS_PAYMENTS_PAYMENT_SHEET_VIEW_CONTROLLER_H_ |
| OLD | NEW |