| 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 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_ |
| OLD | NEW |