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

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

Issue 2700713005: [WebPayments] Updating Shipping List to use PaymentRequestRowView (Closed)
Patch Set: rebase 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
« no previous file with comments | « no previous file | chrome/browser/ui/views/payments/payment_sheet_view_controller.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 } 15 }
16 16
17 namespace views { 17 namespace views {
18 class Border; 18 class Border;
19 class VectorIconButtonDelegate; 19 class VectorIconButtonDelegate;
20 class View; 20 class View;
21 } 21 }
22 22
23 namespace payments { 23 namespace payments {
24 24
25 constexpr int kPaymentRequestRowHorizontalInsets = 14; 25 constexpr int kPaymentRequestRowHorizontalInsets = 14;
26 constexpr int kPaymentRequestRowVerticalInsets = 8; 26 constexpr int kPaymentRequestRowVerticalInsets = 8;
27 // Extra inset relative to the header when a right edge should line up with the
28 // close button's X rather than its invisible right edge.
29 constexpr int kPaymentRequestRowExtraRightInset = 8;
27 30
28 enum class PaymentRequestCommonTags { 31 enum class PaymentRequestCommonTags {
29 BACK_BUTTON_TAG = 0, 32 BACK_BUTTON_TAG = 0,
30 CLOSE_BUTTON_TAG, 33 CLOSE_BUTTON_TAG,
31 // This is the max value of tags for controls common to multiple 34 // This is the max value of tags for controls common to multiple
32 // PaymentRequest contexts. Individual screens that handle both common and 35 // PaymentRequest contexts. Individual screens that handle both common and
33 // specific events with tags can start their specific tags at this value. 36 // specific events with tags can start their specific tags at this value.
34 PAYMENT_REQUEST_COMMON_TAG_MAX 37 PAYMENT_REQUEST_COMMON_TAG_MAX
35 }; 38 };
36 39
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
68 bool show_payer_email, 71 bool show_payer_email,
69 bool show_payer_phone); 72 bool show_payer_phone);
70 73
71 // Creates a views::Border object that can paint the gray horizontal ruler used 74 // Creates a views::Border object that can paint the gray horizontal ruler used
72 // as a separator between items in the Payment Request dialog. 75 // as a separator between items in the Payment Request dialog.
73 std::unique_ptr<views::Border> CreatePaymentRequestRowBorder(); 76 std::unique_ptr<views::Border> CreatePaymentRequestRowBorder();
74 77
75 } // namespace payments 78 } // namespace payments
76 79
77 #endif // CHROME_BROWSER_UI_VIEWS_PAYMENTS_PAYMENT_REQUEST_VIEWS_UTIL_H_ 80 #endif // CHROME_BROWSER_UI_VIEWS_PAYMENTS_PAYMENT_REQUEST_VIEWS_UTIL_H_
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/ui/views/payments/payment_sheet_view_controller.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698