| OLD | NEW |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. | 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 | 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_DIALOG_VIEW_IDS_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_PAYMENTS_PAYMENT_REQUEST_DIALOG_VIEW_IDS_H_ |
| 6 #define CHROME_BROWSER_UI_VIEWS_PAYMENTS_PAYMENT_REQUEST_DIALOG_VIEW_IDS_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_PAYMENTS_PAYMENT_REQUEST_DIALOG_VIEW_IDS_H_ |
| 7 | 7 |
| 8 #include "components/autofill/core/browser/field_types.h" | 8 #include "components/autofill/core/browser/field_types.h" |
| 9 | 9 |
| 10 // This defines an enumeration of IDs that can uniquely identify a view within | 10 // This defines an enumeration of IDs that can uniquely identify a view within |
| 11 // the scope of the Payment Request Dialog. | 11 // the scope of the Payment Request Dialog. |
| 12 | 12 |
| 13 namespace payments { | 13 namespace payments { |
| 14 | 14 |
| 15 enum class DialogViewID : int { | 15 enum class DialogViewID : int { |
| 16 VIEW_ID_NONE = autofill::MAX_VALID_FIELD_TYPE, | 16 VIEW_ID_NONE = autofill::MAX_VALID_FIELD_TYPE, |
| 17 | 17 |
| 18 // The following are views::Button (clickable). | 18 // The following are views::Button (clickable). |
| 19 PAYMENT_SHEET_CONTACT_INFO_SECTION, | 19 PAYMENT_SHEET_CONTACT_INFO_SECTION, |
| 20 PAYMENT_SHEET_PAYMENT_METHOD_SECTION, | 20 PAYMENT_SHEET_PAYMENT_METHOD_SECTION, |
| 21 PAYMENT_SHEET_SHIPPING_SECTION, | 21 PAYMENT_SHEET_SHIPPING_SECTION, |
| 22 PAYMENT_SHEET_SUMMARY_SECTION, | 22 PAYMENT_SHEET_SUMMARY_SECTION, |
| 23 PAYMENT_SHEET_SHIPPING_OPTION_SECTION, | 23 PAYMENT_SHEET_SHIPPING_OPTION_SECTION, |
| 24 PAYMENT_METHOD_ADD_CARD_BUTTON, | 24 PAYMENT_METHOD_ADD_CARD_BUTTON, |
| 25 PAYMENT_METHOD_ADD_SHIPPING_BUTTON, |
| 25 EDITOR_SAVE_BUTTON, | 26 EDITOR_SAVE_BUTTON, |
| 26 PAY_BUTTON, | 27 PAY_BUTTON, |
| 27 | 28 |
| 28 // The following are StyledLabel objects. | 29 // The following are StyledLabel objects. |
| 29 ORDER_SUMMARY_TOTAL_AMOUNT_LABEL, | 30 ORDER_SUMMARY_TOTAL_AMOUNT_LABEL, |
| 30 ORDER_SUMMARY_LINE_ITEM_1, | 31 ORDER_SUMMARY_LINE_ITEM_1, |
| 31 ORDER_SUMMARY_LINE_ITEM_2, | 32 ORDER_SUMMARY_LINE_ITEM_2, |
| 32 ORDER_SUMMARY_LINE_ITEM_3, | 33 ORDER_SUMMARY_LINE_ITEM_3, |
| 33 | 34 |
| 34 // The following are views contained within the Payment Method Sheet. | 35 // The following are views contained within the Payment Method Sheet. |
| 35 PAYMENT_METHOD_SHEET_LIST_VIEW, | 36 PAYMENT_METHOD_SHEET_LIST_VIEW, |
| 36 | 37 |
| 37 // Used in selectable rows. Each row in a view reuses this ID, but the ID is | 38 // Used in selectable rows. Each row in a view reuses this ID, but the ID is |
| 38 // unique at the scope of the parent row. | 39 // unique at the scope of the parent row. |
| 39 CHECKMARK_VIEW, | 40 CHECKMARK_VIEW, |
| 40 | 41 |
| 41 // The following are views contained within the Contact Info Sheet. | 42 // The following are views contained within the Contact Info Sheet. |
| 42 CONTACT_INFO_ITEM_CHECKMARK_VIEW, | 43 CONTACT_INFO_ITEM_CHECKMARK_VIEW, |
| 43 | 44 |
| 44 // Used to label the error labels with an offset, which gets added to | 45 // Used to label the error labels with an offset, which gets added to |
| 45 // the Autofill type value they represent (for tests). | 46 // the Autofill type value they represent (for tests). |
| 46 ERROR_LABEL_OFFSET, | 47 ERROR_LABEL_OFFSET, |
| 47 }; | 48 }; |
| 48 | 49 |
| 49 } // namespace payments | 50 } // namespace payments |
| 50 | 51 |
| 51 #endif // CHROME_BROWSER_UI_VIEWS_PAYMENTS_PAYMENT_REQUEST_DIALOG_VIEW_IDS_H_ | 52 #endif // CHROME_BROWSER_UI_VIEWS_PAYMENTS_PAYMENT_REQUEST_DIALOG_VIEW_IDS_H_ |
| OLD | NEW |