| 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" |
| 11 #include "chrome/browser/ui/views/payments/payment_request_sheet_controller.h" | 11 #include "chrome/browser/ui/views/payments/payment_request_sheet_controller.h" |
| 12 #include "components/payments/content/payment_request.h" | |
| 13 #include "components/payments/content/payment_request_state.h" | 12 #include "components/payments/content/payment_request_state.h" |
| 14 | 13 |
| 15 namespace payments { | 14 namespace payments { |
| 16 | 15 |
| 17 class PaymentRequest; | 16 class PaymentRequestSpec; |
| 17 class PaymentRequestState; |
| 18 class PaymentRequestDialogView; | 18 class PaymentRequestDialogView; |
| 19 | 19 |
| 20 // The PaymentRequestSheetController subtype for the Payment Sheet screen of the | 20 // The PaymentRequestSheetController subtype for the Payment Sheet screen of the |
| 21 // Payment Request dialog. | 21 // Payment Request dialog. |
| 22 class PaymentSheetViewController : public PaymentRequestSheetController, | 22 class PaymentSheetViewController : public PaymentRequestSheetController, |
| 23 public PaymentRequestState::Observer { | 23 public PaymentRequestState::Observer { |
| 24 public: | 24 public: |
| 25 // Does not take ownership of the arguments, which should outlive this object. | 25 // Does not take ownership of the arguments, which should outlive this object. |
| 26 PaymentSheetViewController(PaymentRequest* request, | 26 PaymentSheetViewController(PaymentRequestSpec* spec, |
| 27 PaymentRequestState* state, |
| 27 PaymentRequestDialogView* dialog); | 28 PaymentRequestDialogView* dialog); |
| 28 ~PaymentSheetViewController() override; | 29 ~PaymentSheetViewController() override; |
| 29 | 30 |
| 30 // PaymentRequestSheetController: | 31 // PaymentRequestSheetController: |
| 31 std::unique_ptr<views::View> CreateView() override; | 32 std::unique_ptr<views::View> CreateView() override; |
| 32 | 33 |
| 33 // PaymentRequestState::Observer: | 34 // PaymentRequestState::Observer: |
| 34 void OnSelectedInformationChanged() override; | 35 void OnSelectedInformationChanged() override; |
| 35 | 36 |
| 36 private: | 37 private: |
| (...skipping 15 matching lines...) Expand all Loading... |
| 52 views::Button* pay_button_; | 53 views::Button* pay_button_; |
| 53 | 54 |
| 54 const int widest_name_column_view_width_; | 55 const int widest_name_column_view_width_; |
| 55 | 56 |
| 56 DISALLOW_COPY_AND_ASSIGN(PaymentSheetViewController); | 57 DISALLOW_COPY_AND_ASSIGN(PaymentSheetViewController); |
| 57 }; | 58 }; |
| 58 | 59 |
| 59 } // namespace payments | 60 } // namespace payments |
| 60 | 61 |
| 61 #endif // CHROME_BROWSER_UI_VIEWS_PAYMENTS_PAYMENT_SHEET_VIEW_CONTROLLER_H_ | 62 #endif // CHROME_BROWSER_UI_VIEWS_PAYMENTS_PAYMENT_SHEET_VIEW_CONTROLLER_H_ |
| OLD | NEW |