Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(920)

Side by Side Diff: chrome/browser/ui/views/payments/credit_card_editor_view_controller.h

Issue 2676663002: [Payments] Implements the credit card editor for Desktop UI (Closed)
Patch Set: formatting Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
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_
7
8 #include "base/macros.h"
9 #include "chrome/browser/ui/views/payments/editor_view_controller.h"
10
11 namespace payments {
12
13 class PaymentRequest;
14 class PaymentRequestDialogView;
15
16 // Credit card editor screen of the Payment Request flow.
17 class CreditCardEditorViewController : public EditorViewController {
18 public:
19 // Does not take ownership of the arguments, which should outlive this object.
20 CreditCardEditorViewController(PaymentRequest* request,
21 PaymentRequestDialogView* dialog);
22 ~CreditCardEditorViewController() override;
23
24 // EditorViewController implementation.
25 std::vector<EditorField> GetFieldDefinitions() override;
26 bool ValidateModelAndSave() override;
27
28 private:
29 DISALLOW_COPY_AND_ASSIGN(CreditCardEditorViewController);
30 };
31
32 } // namespace payments
33
34 #endif // CHROME_BROWSER_UI_VIEWS_PAYMENTS_CREDIT_CARD_EDITOR_VIEW_CONTROLLER_H _
OLDNEW
« no previous file with comments | « chrome/browser/ui/BUILD.gn ('k') | chrome/browser/ui/views/payments/credit_card_editor_view_controller.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698