| OLD | NEW |
| 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 Loading... |
| 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_ |
| OLD | NEW |