| 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/validating_textfield.h" |
| 10 | 11 |
| 11 namespace payments { | 12 namespace payments { |
| 12 | 13 |
| 13 class PaymentRequest; | 14 class PaymentRequest; |
| 14 class PaymentRequestDialogView; | 15 class PaymentRequestDialogView; |
| 15 | 16 |
| 16 // Credit card editor screen of the Payment Request flow. | 17 // Credit card editor screen of the Payment Request flow. |
| 17 class CreditCardEditorViewController : public EditorViewController { | 18 class CreditCardEditorViewController : public EditorViewController { |
| 18 public: | 19 public: |
| 19 // Does not take ownership of the arguments, which should outlive this object. | 20 // Does not take ownership of the arguments, which should outlive this object. |
| 20 CreditCardEditorViewController(PaymentRequest* request, | 21 CreditCardEditorViewController(PaymentRequest* request, |
| 21 PaymentRequestDialogView* dialog); | 22 PaymentRequestDialogView* dialog); |
| 22 ~CreditCardEditorViewController() override; | 23 ~CreditCardEditorViewController() override; |
| 23 | 24 |
| 24 // EditorViewController implementation. | 25 // EditorViewController: |
| 25 std::vector<EditorField> GetFieldDefinitions() override; | 26 std::vector<EditorField> GetFieldDefinitions() override; |
| 26 bool ValidateModelAndSave() override; | 27 bool ValidateModelAndSave() override; |
| 28 std::unique_ptr<ValidatingTextfield::Delegate> CreateValidationDelegate( |
| 29 const EditorField& field) override; |
| 27 | 30 |
| 28 private: | 31 private: |
| 32 class ValidationDelegate : public ValidatingTextfield::Delegate { |
| 33 public: |
| 34 explicit ValidationDelegate(const EditorField& field); |
| 35 ~ValidationDelegate() override; |
| 36 |
| 37 // ValidatingTextfield::Delegate: |
| 38 bool ValidateTextfield(views::Textfield* textfield) override; |
| 39 |
| 40 private: |
| 41 EditorField field_; |
| 42 |
| 43 DISALLOW_COPY_AND_ASSIGN(ValidationDelegate); |
| 44 }; |
| 45 |
| 29 DISALLOW_COPY_AND_ASSIGN(CreditCardEditorViewController); | 46 DISALLOW_COPY_AND_ASSIGN(CreditCardEditorViewController); |
| 30 }; | 47 }; |
| 31 | 48 |
| 32 } // namespace payments | 49 } // namespace payments |
| 33 | 50 |
| 34 #endif // CHROME_BROWSER_UI_VIEWS_PAYMENTS_CREDIT_CARD_EDITOR_VIEW_CONTROLLER_H
_ | 51 #endif // CHROME_BROWSER_UI_VIEWS_PAYMENTS_CREDIT_CARD_EDITOR_VIEW_CONTROLLER_H
_ |
| OLD | NEW |