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

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: Fix up some comments. 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 } 15 }
16 16
17 namespace views { 17 namespace views {
18 class Border; 18 class Border;
19 class ImageView; 19 class ImageView;
20 class VectorIconButtonDelegate; 20 class VectorIconButtonDelegate;
21 class View; 21 class View;
22 } 22 }
23 23
24 namespace payments { 24 namespace payments {
25 25
26 constexpr int kPaymentRequestRowHorizontalInsets = 16; 26 constexpr int kPaymentRequestRowHorizontalInsets = 16;
27 constexpr int kPaymentRequestRowVerticalInsets = 8; 27 constexpr int kPaymentRequestRowVerticalInsets = 8;
28
28 // Extra inset relative to the header when a right edge should line up with the 29 // Extra inset relative to the header when a right edge should line up with the
29 // close button's X rather than its invisible right edge. 30 // close button's X rather than its invisible right edge.
30 constexpr int kPaymentRequestRowExtraRightInset = 8; 31 constexpr int kPaymentRequestRowExtraRightInset = 8;
32 constexpr int kPaymentRequestButtonSpacing = 10;
31 33
32 enum class PaymentRequestCommonTags { 34 enum class PaymentRequestCommonTags {
33 BACK_BUTTON_TAG = 0, 35 BACK_BUTTON_TAG = 0,
34 CLOSE_BUTTON_TAG, 36 CLOSE_BUTTON_TAG,
35 // This is the max value of tags for controls common to multiple 37 // This is the max value of tags for controls common to multiple
36 // PaymentRequest contexts. Individual screens that handle both common and 38 // PaymentRequest contexts. Individual screens that handle both common and
37 // specific events with tags can start their specific tags at this value. 39 // specific events with tags can start their specific tags at this value.
38 PAYMENT_REQUEST_COMMON_TAG_MAX 40 PAYMENT_REQUEST_COMMON_TAG_MAX
39 }; 41 };
40 42
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
77 bool show_payer_email, 79 bool show_payer_email,
78 bool show_payer_phone); 80 bool show_payer_phone);
79 81
80 // Creates a views::Border object that can paint the gray horizontal ruler used 82 // Creates a views::Border object that can paint the gray horizontal ruler used
81 // as a separator between items in the Payment Request dialog. 83 // as a separator between items in the Payment Request dialog.
82 std::unique_ptr<views::Border> CreatePaymentRequestRowBorder(); 84 std::unique_ptr<views::Border> CreatePaymentRequestRowBorder();
83 85
84 } // namespace payments 86 } // namespace payments
85 87
86 #endif // CHROME_BROWSER_UI_VIEWS_PAYMENTS_PAYMENT_REQUEST_VIEWS_UTIL_H_ 88 #endif // CHROME_BROWSER_UI_VIEWS_PAYMENTS_PAYMENT_REQUEST_VIEWS_UTIL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698