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

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

Issue 2695653004: [Web Payments] Add a mechanism to build item lists in the PR dialog. (Closed)
Patch Set: 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
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_VIEWS_UTIL_H_ 5 #ifndef CHROME_BROWSER_UI_VIEWS_PAYMENTS_PAYMENT_REQUEST_VIEWS_UTIL_H_
6 #define CHROME_BROWSER_UI_VIEWS_PAYMENTS_PAYMENT_REQUEST_VIEWS_UTIL_H_ 6 #define CHROME_BROWSER_UI_VIEWS_PAYMENTS_PAYMENT_REQUEST_VIEWS_UTIL_H_
7 7
8 #include <memory> 8 #include <memory>
9 #include <string> 9 #include <string>
10 10
11 #include "base/strings/string16.h" 11 #include "base/strings/string16.h"
12 12
13 namespace autofill { 13 namespace autofill {
14 class AutofillProfile; 14 class AutofillProfile;
15 class CreditCard;
15 } 16 }
16 17
17 namespace views { 18 namespace views {
18 class Border; 19 class Border;
19 class VectorIconButtonDelegate; 20 class VectorIconButtonDelegate;
20 class View; 21 class View;
21 } 22 }
22 23
23 namespace payments { 24 namespace payments {
24 25
25 constexpr int kPaymentRequestRowHorizontalInsets = 14; 26 constexpr int kPaymentRequestRowHorizontalInsets = 14;
26 constexpr int kPaymentRequestRowVerticalInsets = 8; 27 constexpr int kPaymentRequestRowVerticalInsets = 8;
28 constexpr int kPaymentRequestButtonSpacing = 10;
27 29
28 enum class PaymentRequestCommonTags { 30 enum class PaymentRequestCommonTags {
29 BACK_BUTTON_TAG = 0, 31 BACK_BUTTON_TAG = 0,
30 CLOSE_BUTTON_TAG, 32 CLOSE_BUTTON_TAG,
31 // This is the max value of tags for controls common to multiple 33 // This is the max value of tags for controls common to multiple
32 // PaymentRequest contexts. Individual screens that handle both common and 34 // PaymentRequest contexts. Individual screens that handle both common and
33 // specific events with tags can start their specific tags at this value. 35 // specific events with tags can start their specific tags at this value.
34 PAYMENT_REQUEST_COMMON_TAG_MAX 36 PAYMENT_REQUEST_COMMON_TAG_MAX
35 }; 37 };
36 38
(...skipping 28 matching lines...) Expand all
65 const std::string& locale, 67 const std::string& locale,
66 const autofill::AutofillProfile& profile, 68 const autofill::AutofillProfile& profile,
67 bool show_payer_name, 69 bool show_payer_name,
68 bool show_payer_email, 70 bool show_payer_email,
69 bool show_payer_phone); 71 bool show_payer_phone);
70 72
71 // Creates a views::Border object that can paint the gray horizontal ruler used 73 // Creates a views::Border object that can paint the gray horizontal ruler used
72 // as a separator between items in the Payment Request dialog. 74 // as a separator between items in the Payment Request dialog.
73 std::unique_ptr<views::Border> CreatePaymentRequestRowBorder(); 75 std::unique_ptr<views::Border> CreatePaymentRequestRowBorder();
74 76
77 std::unique_ptr<views::View> CreateCreditCardIconView(
78 autofill::CreditCard* card);
79
75 } // namespace payments 80 } // namespace payments
76 81
77 #endif // CHROME_BROWSER_UI_VIEWS_PAYMENTS_PAYMENT_REQUEST_VIEWS_UTIL_H_ 82 #endif // CHROME_BROWSER_UI_VIEWS_PAYMENTS_PAYMENT_REQUEST_VIEWS_UTIL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698