blob: e36bd54c589a5b5d9601c66f288d41aa22e830ce [file] [log] [blame]
// Copyright 2017 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef IOS_CHROME_BROWSER_UI_AUTOFILL_AUTOFILL_UI_TYPE_H_
#define IOS_CHROME_BROWSER_UI_AUTOFILL_AUTOFILL_UI_TYPE_H_
#import <Foundation/Foundation.h>
// Each one of the following types with the exception of
// AutofillUITypeCreditCardExpDate, AutofillUITypeCreditCardBillingAddress,
// and AutofillUITypeCreditCardSaveToChrome corresponds to an
// autofill::ServerFieldType.
typedef NS_ENUM(NSInteger, AutofillUIType) {
AutofillUITypeUnknown,
AutofillUITypeCreditCardNumber,
AutofillUITypeCreditCardHolderFullName,
AutofillUITypeCreditCardExpMonth,
AutofillUITypeCreditCardExpYear,
AutofillUITypeCreditCardExpDate,
AutofillUITypeCreditCardBillingAddress,
AutofillUITypeCreditCardSaveToChrome,
AutofillUITypeProfileHonorificPrefix,
AutofillUITypeProfileFullName,
AutofillUITypeProfileCompanyName,
AutofillUITypeProfileHomeAddressStreet,
AutofillUITypeProfileHomeAddressLine1,
AutofillUITypeProfileHomeAddressLine2,
AutofillUITypeProfileHomeAddressDependentLocality,
AutofillUITypeProfileHomeAddressCity,
AutofillUITypeProfileHomeAddressState,
AutofillUITypeProfileHomeAddressZip,
AutofillUITypeProfileHomeAddressSortingCode,
AutofillUITypeProfileHomeAddressCountry,
AutofillUITypeProfileHomePhoneWholeNumber,
AutofillUITypeProfileEmailAddress,
};
#endif // IOS_CHROME_BROWSER_UI_AUTOFILL_AUTOFILL_UI_TYPE_H_