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 |
(...skipping 11 matching lines...) Expand all Loading... |
22 PAYMENT_SHEET_SUMMARY_SECTION, | 22 PAYMENT_SHEET_SUMMARY_SECTION, |
23 PAYMENT_METHOD_ADD_CARD_BUTTON, | 23 PAYMENT_METHOD_ADD_CARD_BUTTON, |
24 EDITOR_SAVE_BUTTON, | 24 EDITOR_SAVE_BUTTON, |
25 | 25 |
26 // The following are StyledLabel objects. | 26 // The following are StyledLabel objects. |
27 ORDER_SUMMARY_TOTAL_AMOUNT_LABEL, | 27 ORDER_SUMMARY_TOTAL_AMOUNT_LABEL, |
28 ORDER_SUMMARY_LINE_ITEM_1, | 28 ORDER_SUMMARY_LINE_ITEM_1, |
29 ORDER_SUMMARY_LINE_ITEM_2, | 29 ORDER_SUMMARY_LINE_ITEM_2, |
30 ORDER_SUMMARY_LINE_ITEM_3, | 30 ORDER_SUMMARY_LINE_ITEM_3, |
31 | 31 |
| 32 // The following are views contained within the Payment Method Sheet. |
| 33 PAYMENT_METHOD_SHEET_LIST_VIEW, |
| 34 PAYMENT_METHOD_ITEM_CHECKMARK_VIEW, |
| 35 |
32 // Used to label the error labels with an offset, which gets added to | 36 // Used to label the error labels with an offset, which gets added to |
33 // the Autofill type value they represent (for tests). | 37 // the Autofill type value they represent (for tests). |
34 ERROR_LABEL_OFFSET, | 38 ERROR_LABEL_OFFSET, |
35 }; | 39 }; |
36 | 40 |
37 } // namespace payments | 41 } // namespace payments |
38 | 42 |
39 #endif // CHROME_BROWSER_UI_VIEWS_PAYMENTS_PAYMENT_REQUEST_DIALOG_VIEW_IDS_H_ | 43 #endif // CHROME_BROWSER_UI_VIEWS_PAYMENTS_PAYMENT_REQUEST_DIALOG_VIEW_IDS_H_ |
OLD | NEW |