| OLD | NEW |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. | 1 // Copyright 2017 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_CREDIT_CARD_EDITOR_VIEW_CONTROLLER_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_PAYMENTS_CREDIT_CARD_EDITOR_VIEW_CONTROLLER_H_ |
| 6 #define CHROME_BROWSER_UI_VIEWS_PAYMENTS_CREDIT_CARD_EDITOR_VIEW_CONTROLLER_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_PAYMENTS_CREDIT_CARD_EDITOR_VIEW_CONTROLLER_H_ |
| 7 | 7 |
| 8 #include "base/macros.h" | 8 #include "base/macros.h" |
| 9 #include "chrome/browser/ui/views/payments/editor_view_controller.h" | 9 #include "chrome/browser/ui/views/payments/editor_view_controller.h" |
| 10 #include "chrome/browser/ui/views/payments/validation_delegate.h" | 10 #include "chrome/browser/ui/views/payments/validation_delegate.h" |
| 11 #include "ui/base/models/simple_combobox_model.h" | 11 #include "ui/base/models/simple_combobox_model.h" |
| 12 | 12 |
| 13 namespace payments { | 13 namespace payments { |
| 14 | 14 |
| 15 class PaymentRequest; | 15 class PaymentRequest; |
| 16 class PaymentRequestDialogView; | 16 class PaymentRequestDialogView; |
| 17 | 17 |
| 18 // Credit card editor screen of the Payment Request flow. | 18 // Credit card editor screen of the Payment Request flow. |
| 19 class CreditCardEditorViewController : public EditorViewController { | 19 class CreditCardEditorViewController : public EditorViewController { |
| 20 public: | 20 public: |
| 21 // Does not take ownership of the arguments, which should outlive this object. | 21 // Does not take ownership of the arguments, which should outlive this object. |
| 22 CreditCardEditorViewController(PaymentRequest* request, | 22 CreditCardEditorViewController(PaymentRequest* request, |
| 23 PaymentRequestDialogView* dialog); | 23 PaymentRequestDialogView* dialog); |
| 24 ~CreditCardEditorViewController() override; | 24 ~CreditCardEditorViewController() override; |
| 25 | 25 |
| 26 // EditorViewController: | 26 // EditorViewController: |
| 27 std::unique_ptr<views::View> CreateHeaderView() override; |
| 27 std::vector<EditorField> GetFieldDefinitions() override; | 28 std::vector<EditorField> GetFieldDefinitions() override; |
| 28 bool ValidateModelAndSave() override; | 29 bool ValidateModelAndSave() override; |
| 29 std::unique_ptr<ValidationDelegate> CreateValidationDelegate( | 30 std::unique_ptr<ValidationDelegate> CreateValidationDelegate( |
| 30 const EditorField& field) override; | 31 const EditorField& field) override; |
| 31 std::unique_ptr<ui::ComboboxModel> GetComboboxModelForType( | 32 std::unique_ptr<ui::ComboboxModel> GetComboboxModelForType( |
| 32 const autofill::ServerFieldType& type) override; | 33 const autofill::ServerFieldType& type) override; |
| 33 | 34 |
| 34 private: | 35 private: |
| 35 class CreditCardValidationDelegate : public ValidationDelegate { | 36 class CreditCardValidationDelegate : public ValidationDelegate { |
| 36 public: | 37 public: |
| (...skipping 12 matching lines...) Expand all Loading... |
| 49 | 50 |
| 50 DISALLOW_COPY_AND_ASSIGN(CreditCardValidationDelegate); | 51 DISALLOW_COPY_AND_ASSIGN(CreditCardValidationDelegate); |
| 51 }; | 52 }; |
| 52 | 53 |
| 53 DISALLOW_COPY_AND_ASSIGN(CreditCardEditorViewController); | 54 DISALLOW_COPY_AND_ASSIGN(CreditCardEditorViewController); |
| 54 }; | 55 }; |
| 55 | 56 |
| 56 } // namespace payments | 57 } // namespace payments |
| 57 | 58 |
| 58 #endif // CHROME_BROWSER_UI_VIEWS_PAYMENTS_CREDIT_CARD_EDITOR_VIEW_CONTROLLER_H
_ | 59 #endif // CHROME_BROWSER_UI_VIEWS_PAYMENTS_CREDIT_CARD_EDITOR_VIEW_CONTROLLER_H
_ |
| OLD | NEW |