Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(231)

Side by Side Diff: chrome/browser/ui/views/payments/payment_request_dialog_view_ids.h

Issue 2789093002: [Payments] Desktop: implement shipping address/option change (Closed)
Patch Set: compile fix Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 PAYMENT_METHOD_ADD_SHIPPING_BUTTON,
26 PAYMENT_METHOD_ADD_CONTACT_BUTTON, 26 PAYMENT_METHOD_ADD_CONTACT_BUTTON,
27 EDITOR_SAVE_BUTTON, 27 EDITOR_SAVE_BUTTON,
28 PAY_BUTTON, 28 PAY_BUTTON,
29 CANCEL_BUTTON, 29 CANCEL_BUTTON,
30 BACK_BUTTON,
30 31
31 // The following are StyledLabel objects. 32 // The following are Label objects.
32 ORDER_SUMMARY_TOTAL_AMOUNT_LABEL, 33 ORDER_SUMMARY_TOTAL_AMOUNT_LABEL,
33 ORDER_SUMMARY_LINE_ITEM_1, 34 ORDER_SUMMARY_LINE_ITEM_1,
34 ORDER_SUMMARY_LINE_ITEM_2, 35 ORDER_SUMMARY_LINE_ITEM_2,
35 ORDER_SUMMARY_LINE_ITEM_3, 36 ORDER_SUMMARY_LINE_ITEM_3,
37 SHIPPING_OPTION_DESCRIPTION,
38 SHIPPING_OPTION_AMOUNT,
39
40 // Used in "three line labels" to annotate each Label of the grouping.
41 THREE_LINE_LABEL_LINE_1,
42 THREE_LINE_LABEL_LINE_2,
43 THREE_LINE_LABEL_LINE_3,
36 44
37 // The following are views contained within the Payment Method Sheet. 45 // The following are views contained within the Payment Method Sheet.
46 CONTACT_INFO_SHEET_LIST_VIEW,
38 PAYMENT_METHOD_SHEET_LIST_VIEW, 47 PAYMENT_METHOD_SHEET_LIST_VIEW,
48 SHIPPING_ADDRESS_SHEET_LIST_VIEW,
39 49
40 // 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
41 // unique at the scope of the parent row. 51 // unique at the scope of the parent row.
42 CHECKMARK_VIEW, 52 CHECKMARK_VIEW,
43 53
44 // The following are views contained within the Contact Info Sheet.
45 CONTACT_INFO_ITEM_CHECKMARK_VIEW,
46
47 // 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
48 // the Autofill type value they represent (for tests). 55 // the Autofill type value they represent (for tests).
49 ERROR_LABEL_OFFSET, 56 ERROR_LABEL_OFFSET,
50 }; 57 };
51 58
52 } // namespace payments 59 } // namespace payments
53 60
54 #endif // CHROME_BROWSER_UI_VIEWS_PAYMENTS_PAYMENT_REQUEST_DIALOG_VIEW_IDS_H_ 61 #endif // CHROME_BROWSER_UI_VIEWS_PAYMENTS_PAYMENT_REQUEST_DIALOG_VIEW_IDS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698