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

Side by Side Diff: ios/chrome/browser/ui/autofill/autofill_ui_type.h

Issue 2893353002: [Payment Request] Address edit view controller (Part 2) (Closed)
Patch Set: Initial Created 3 years, 7 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 IOS_CHROME_BROWSER_UI_AUTOFILL_AUTOFILL_UI_TYPE_H_ 5 #ifndef IOS_CHROME_BROWSER_UI_AUTOFILL_AUTOFILL_UI_TYPE_H_
6 #define IOS_CHROME_BROWSER_UI_AUTOFILL_AUTOFILL_UI_TYPE_H_ 6 #define IOS_CHROME_BROWSER_UI_AUTOFILL_AUTOFILL_UI_TYPE_H_
7 7
8 #import <Foundation/Foundation.h> 8 #import <Foundation/Foundation.h>
9 9
10 // Each one of the following types corresponds to an autofill::ServerFieldType. 10 // Each one of the following types corresponds to an autofill::ServerFieldType.
11 typedef NS_ENUM(NSInteger, AutofillUIType) { 11 typedef NS_ENUM(NSInteger, AutofillUIType) {
12 AutofillUITypeUnknown, 12 AutofillUITypeUnknown,
13 AutofillUITypeCreditCardNumber, 13 AutofillUITypeCreditCardNumber,
14 AutofillUITypeCreditCardHolderFullName, 14 AutofillUITypeCreditCardHolderFullName,
15 AutofillUITypeCreditCardExpMonth, 15 AutofillUITypeCreditCardExpMonth,
16 AutofillUITypeCreditCardExpYear, 16 AutofillUITypeCreditCardExpYear,
17 AutofillUITypeCreditCardBillingAddress, 17 AutofillUITypeCreditCardBillingAddress,
18 AutofillUITypeProfileFullName, 18 AutofillUITypeProfileFullName,
19 AutofillUITypeProfileCompanyName, 19 AutofillUITypeProfileCompanyName,
20 AutofillUITypeProfileHomeAddressStreet,
20 AutofillUITypeProfileHomeAddressLine1, 21 AutofillUITypeProfileHomeAddressLine1,
21 AutofillUITypeProfileHomeAddressLine2, 22 AutofillUITypeProfileHomeAddressLine2,
23 AutofillUITypeProfileHomeAddressDependentLocality,
22 AutofillUITypeProfileHomeAddressCity, 24 AutofillUITypeProfileHomeAddressCity,
23 AutofillUITypeProfileHomeAddressState, 25 AutofillUITypeProfileHomeAddressState,
24 AutofillUITypeProfileHomeAddressZip, 26 AutofillUITypeProfileHomeAddressZip,
27 AutofillUITypeProfileHomeAddressSortingCode,
25 AutofillUITypeProfileHomeAddressCountry, 28 AutofillUITypeProfileHomeAddressCountry,
26 AutofillUITypeProfileHomePhoneWholeNumber, 29 AutofillUITypeProfileHomePhoneWholeNumber,
27 AutofillUITypeProfileEmailAddress, 30 AutofillUITypeProfileEmailAddress,
28 }; 31 };
29 32
30 #endif // IOS_CHROME_BROWSER_UI_AUTOFILL_AUTOFILL_UI_TYPE_H_ 33 #endif // IOS_CHROME_BROWSER_UI_AUTOFILL_AUTOFILL_UI_TYPE_H_
OLDNEW
« no previous file with comments | « ios/chrome/browser/payments/test_payment_request.mm ('k') | ios/chrome/browser/ui/autofill/autofill_ui_type_util.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698