Index: chrome/browser/autofill/field_types.h |
diff --git a/chrome/browser/autofill/field_types.h b/chrome/browser/autofill/field_types.h |
index 832b94a0cb0a47999026379aad85cdb66902e771..6091ec913aa95ee4b0fb6be94a77dc960c133859 100644 |
--- a/chrome/browser/autofill/field_types.h |
+++ b/chrome/browser/autofill/field_types.h |
@@ -6,6 +6,7 @@ |
#define CHROME_BROWSER_AUTOFILL_FIELD_TYPES_H_ |
#include <set> |
+#include <string> |
// NOTE: This list MUST not be modified. The server aggregates and stores these |
// types over several versions, so we must remain fully compatible with the |
@@ -77,11 +78,15 @@ enum AutofillFieldType { |
COMPANY_NAME = 60, |
+ // Generic type whose default value is known. |
+ FIELD_WITH_DEFAULT_VALUE = 61, |
+ |
// No new types can be added. |
- MAX_VALID_FIELD_TYPE = 61, |
+ MAX_VALID_FIELD_TYPE = 62, |
}; |
typedef std::set<AutofillFieldType> FieldTypeSet; |
+typedef std::pair<AutofillFieldType, std::string> AutofillFieldInfo; |
#endif // CHROME_BROWSER_AUTOFILL_FIELD_TYPES_H_ |