| 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" |
| 9 |
| 8 // 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 |
| 9 // the scope of the Payment Request Dialog. | 11 // the scope of the Payment Request Dialog. |
| 10 | 12 |
| 11 namespace payments { | 13 namespace payments { |
| 12 | 14 |
| 13 enum class DialogViewID : int { | 15 enum class DialogViewID : int { |
| 14 VIEW_ID_NONE, | 16 VIEW_ID_NONE = autofill::MAX_VALID_FIELD_TYPE, |
| 15 | 17 |
| 16 // The following are views::Button (clickable). | 18 // The following are views::Button (clickable). |
| 17 PAYMENT_SHEET_CONTACT_INFO_SECTION, | 19 PAYMENT_SHEET_CONTACT_INFO_SECTION, |
| 18 PAYMENT_SHEET_PAYMENT_METHOD_SECTION, | 20 PAYMENT_SHEET_PAYMENT_METHOD_SECTION, |
| 19 PAYMENT_SHEET_SHIPPING_SECTION, | 21 PAYMENT_SHEET_SHIPPING_SECTION, |
| 20 PAYMENT_SHEET_SUMMARY_SECTION, | 22 PAYMENT_SHEET_SUMMARY_SECTION, |
| 21 PAYMENT_METHOD_ADD_CARD_BUTTON, | 23 PAYMENT_METHOD_ADD_CARD_BUTTON, |
| 22 EDITOR_SAVE_BUTTON, | 24 EDITOR_SAVE_BUTTON, |
| 23 | 25 |
| 24 // The following are StyledLabel objects. | 26 // The following are StyledLabel objects. |
| 25 ORDER_SUMMARY_TOTAL_AMOUNT_LABEL, | 27 ORDER_SUMMARY_TOTAL_AMOUNT_LABEL, |
| 26 ORDER_SUMMARY_LINE_ITEM_1, | 28 ORDER_SUMMARY_LINE_ITEM_1, |
| 27 ORDER_SUMMARY_LINE_ITEM_2, | 29 ORDER_SUMMARY_LINE_ITEM_2, |
| 28 ORDER_SUMMARY_LINE_ITEM_3, | 30 ORDER_SUMMARY_LINE_ITEM_3, |
| 31 |
| 32 // Used to label the error labels with an offset, which gets added to |
| 33 // the Autofill type value they represent (for tests). |
| 34 ERROR_LABEL_OFFSET, |
| 29 }; | 35 }; |
| 30 | 36 |
| 31 } // namespace payments | 37 } // namespace payments |
| 32 | 38 |
| 33 #endif // CHROME_BROWSER_UI_VIEWS_PAYMENTS_PAYMENT_REQUEST_DIALOG_VIEW_IDS_H_ | 39 #endif // CHROME_BROWSER_UI_VIEWS_PAYMENTS_PAYMENT_REQUEST_DIALOG_VIEW_IDS_H_ |
| OLD | NEW |