| 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_REQUEST_DIALOG_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_PAYMENTS_PAYMENT_REQUEST_DIALOG_H_ |
| 6 #define CHROME_BROWSER_UI_VIEWS_PAYMENTS_PAYMENT_REQUEST_DIALOG_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_PAYMENTS_PAYMENT_REQUEST_DIALOG_H_ |
| 7 | 7 |
| 8 #include "ui/views/controls/label.h" | 8 #include "chrome/browser/ui/views/payments/view_stack.h" |
| 9 #include "ui/views/controls/button/button.h" |
| 9 #include "ui/views/window/dialog_delegate.h" | 10 #include "ui/views/window/dialog_delegate.h" |
| 10 | 11 |
| 12 class ViewStack; |
| 13 |
| 11 namespace payments { | 14 namespace payments { |
| 12 | 15 |
| 13 class PaymentRequestImpl; | 16 class PaymentRequestImpl; |
| 14 | 17 |
| 15 // The dialog delegate that represents a desktop WebPayments dialog. This class | 18 // The dialog delegate that represents a desktop WebPayments dialog. This class |
| 16 // is responsible for displaying the view associated with the current state of | 19 // is responsible for displaying the view associated with the current state of |
| 17 // the WebPayments flow and managing the transition between those states. | 20 // the WebPayments flow and managing the transition between those states. |
| 18 class PaymentRequestDialog : public views::DialogDelegateView { | 21 class PaymentRequestDialog : public views::DialogDelegateView, |
| 22 public views::ButtonListener { |
| 19 public: | 23 public: |
| 20 explicit PaymentRequestDialog(PaymentRequestImpl* impl); | 24 explicit PaymentRequestDialog(PaymentRequestImpl* impl); |
| 21 ~PaymentRequestDialog() override; | 25 ~PaymentRequestDialog() override; |
| 22 | 26 |
| 23 // views::WidgetDelegate: | 27 // views::WidgetDelegate |
| 24 ui::ModalType GetModalType() const override; | 28 ui::ModalType GetModalType() const override; |
| 25 | 29 |
| 26 // views::View: | 30 // views::View |
| 27 gfx::Size GetPreferredSize() const override; | 31 gfx::Size GetPreferredSize() const override; |
| 28 | 32 |
| 29 // views::DialogDelegate: | 33 // views::DialogDelegate |
| 30 bool Cancel() override; | 34 bool Cancel() override; |
| 31 | 35 |
| 32 private: | 36 private: |
| 37 void ShowInitialPaymentSheet(); |
| 38 void ShowOrderSummary(); |
| 39 void GoBack(); |
| 40 |
| 41 // views::ButtonListener: |
| 42 void ButtonPressed(views::Button* sender, const ui::Event& event) override; |
| 43 |
| 33 // Non-owned reference to the PaymentRequestImpl that initiated this dialog. | 44 // Non-owned reference to the PaymentRequestImpl that initiated this dialog. |
| 34 // Since the PaymentRequestImpl object always outlives this one, the pointer | 45 // Since the PaymentRequestImpl object always outlives this one, the pointer |
| 35 // should always be valid even though there is no direct ownership | 46 // should always be valid even though there is no direct ownership |
| 36 // relationship between the two. | 47 // relationship between the two. |
| 37 PaymentRequestImpl* impl_; | 48 PaymentRequestImpl* impl_; |
| 38 std::unique_ptr<views::Label> label_; | 49 ViewStack view_stack_; |
| 39 | 50 |
| 40 DISALLOW_COPY_AND_ASSIGN(PaymentRequestDialog); | 51 DISALLOW_COPY_AND_ASSIGN(PaymentRequestDialog); |
| 41 }; | 52 }; |
| 42 | 53 |
| 43 } // namespace payments | 54 } // namespace payments |
| 44 | 55 |
| 45 #endif // CHROME_BROWSER_UI_VIEWS_PAYMENTS_PAYMENT_REQUEST_DIALOG_H_ | 56 #endif // CHROME_BROWSER_UI_VIEWS_PAYMENTS_PAYMENT_REQUEST_DIALOG_H_ |
| OLD | NEW |