Chromium Code Reviews| 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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 47 PAYMENT_METHOD_SHEET_LIST_VIEW, | 47 PAYMENT_METHOD_SHEET_LIST_VIEW, |
| 48 SHIPPING_ADDRESS_SHEET_LIST_VIEW, | 48 SHIPPING_ADDRESS_SHEET_LIST_VIEW, |
| 49 | 49 |
| 50 // Used in selectable rows. Each row in a view reuses this ID, but the ID is | 50 // Used in selectable rows. Each row in a view reuses this ID, but the ID is |
| 51 // unique at the scope of the parent row. | 51 // unique at the scope of the parent row. |
| 52 CHECKMARK_VIEW, | 52 CHECKMARK_VIEW, |
| 53 | 53 |
| 54 // Used to label the error labels with an offset, which gets added to | 54 // Used to label the error labels with an offset, which gets added to |
| 55 // the Autofill type value they represent (for tests). | 55 // the Autofill type value they represent (for tests). |
| 56 ERROR_LABEL_OFFSET, | 56 ERROR_LABEL_OFFSET, |
| 57 | |
| 58 CVC_PROMPT_TEXT_FIELD, | |
| 59 CVC_PROMPT_CONFIRM_BUTTON, | |
|
Mathieu
2017/04/04 19:05:48
nit: could put this up next to pay button
anthonyvd
2017/04/04 23:02:14
Done.
| |
| 57 }; | 60 }; |
| 58 | 61 |
| 59 } // namespace payments | 62 } // namespace payments |
| 60 | 63 |
| 61 #endif // CHROME_BROWSER_UI_VIEWS_PAYMENTS_PAYMENT_REQUEST_DIALOG_VIEW_IDS_H_ | 64 #endif // CHROME_BROWSER_UI_VIEWS_PAYMENTS_PAYMENT_REQUEST_DIALOG_VIEW_IDS_H_ |
| OLD | NEW |