| 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_ORDER_SUMMARY_VIEW_CONTROLLER_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_PAYMENTS_ORDER_SUMMARY_VIEW_CONTROLLER_H_ |
| 6 #define CHROME_BROWSER_UI_VIEWS_PAYMENTS_ORDER_SUMMARY_VIEW_CONTROLLER_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_PAYMENTS_ORDER_SUMMARY_VIEW_CONTROLLER_H_ |
| 7 | 7 |
| 8 #include "base/macros.h" | 8 #include "base/macros.h" |
| 9 #include "chrome/browser/ui/views/payments/payment_request_sheet_controller.h" | 9 #include "chrome/browser/ui/views/payments/payment_request_sheet_controller.h" |
| 10 #include "components/payments/content/payment_request_spec.h" |
| 10 #include "components/payments/content/payment_request_state.h" | 11 #include "components/payments/content/payment_request_state.h" |
| 11 | 12 |
| 12 namespace views { | 13 namespace views { |
| 13 class Button; | 14 class Button; |
| 14 } | 15 } |
| 15 | 16 |
| 16 namespace payments { | 17 namespace payments { |
| 17 | 18 |
| 18 class PaymentRequestSpec; | |
| 19 class PaymentRequestState; | |
| 20 class PaymentRequestDialogView; | 19 class PaymentRequestDialogView; |
| 21 | 20 |
| 22 // The PaymentRequestSheetController subtype for the Order Summary screen of the | 21 // The PaymentRequestSheetController subtype for the Order Summary screen of the |
| 23 // Payment Request flow. | 22 // Payment Request flow. |
| 24 class OrderSummaryViewController : public PaymentRequestSheetController, | 23 class OrderSummaryViewController : public PaymentRequestSheetController, |
| 24 public PaymentRequestSpec::Observer, |
| 25 public PaymentRequestState::Observer { | 25 public PaymentRequestState::Observer { |
| 26 public: | 26 public: |
| 27 // Does not take ownership of the arguments, which should outlive this object. | 27 // Does not take ownership of the arguments, which should outlive this object. |
| 28 OrderSummaryViewController(PaymentRequestSpec* spec, | 28 OrderSummaryViewController(PaymentRequestSpec* spec, |
| 29 PaymentRequestState* state, | 29 PaymentRequestState* state, |
| 30 PaymentRequestDialogView* dialog); | 30 PaymentRequestDialogView* dialog); |
| 31 ~OrderSummaryViewController() override; | 31 ~OrderSummaryViewController() override; |
| 32 | 32 |
| 33 // PaymentRequestSpec::Observer: |
| 34 void OnInvalidSpecProvided() override {} |
| 35 void OnSpecUpdated() override; |
| 36 |
| 33 // PaymentRequestState::Observer: | 37 // PaymentRequestState::Observer: |
| 34 void OnSelectedInformationChanged() override; | 38 void OnSelectedInformationChanged() override; |
| 35 | 39 |
| 36 private: | 40 private: |
| 37 // PaymentRequestSheetController: | 41 // PaymentRequestSheetController: |
| 38 std::unique_ptr<views::Button> CreatePrimaryButton() override; | 42 std::unique_ptr<views::Button> CreatePrimaryButton() override; |
| 39 base::string16 GetSheetTitle() override; | 43 base::string16 GetSheetTitle() override; |
| 40 void FillContentView(views::View* content_view) override; | 44 void FillContentView(views::View* content_view) override; |
| 41 void UpdatePayButtonState(bool enabled); | 45 void UpdatePayButtonState(bool enabled); |
| 42 | 46 |
| 43 views::Button* pay_button_; | 47 views::Button* pay_button_; |
| 44 | 48 |
| 45 DISALLOW_COPY_AND_ASSIGN(OrderSummaryViewController); | 49 DISALLOW_COPY_AND_ASSIGN(OrderSummaryViewController); |
| 46 }; | 50 }; |
| 47 | 51 |
| 48 } // namespace payments | 52 } // namespace payments |
| 49 | 53 |
| 50 #endif // CHROME_BROWSER_UI_VIEWS_PAYMENTS_ORDER_SUMMARY_VIEW_CONTROLLER_H_ | 54 #endif // CHROME_BROWSER_UI_VIEWS_PAYMENTS_ORDER_SUMMARY_VIEW_CONTROLLER_H_ |
| OLD | NEW |