Index: chrome/browser/ui/autofill/autofill_dialog_types.h |
diff --git a/chrome/browser/ui/autofill/autofill_dialog_types.h b/chrome/browser/ui/autofill/autofill_dialog_types.h |
index 349ede212659a1962418f34235bd760906045cc2..70e800db50e428a8a731584cddc96226e0e5af29 100644 |
--- a/chrome/browser/ui/autofill/autofill_dialog_types.h |
+++ b/chrome/browser/ui/autofill/autofill_dialog_types.h |
@@ -154,6 +154,11 @@ struct SuggestionState { |
bool editable; |
}; |
+enum ValidationType { |
+ VALIDATE_EDIT, // Validate user edits. Allow for empty fields. |
+ VALIDATE_FINAL, // Full form validation. Required fields can't be empty. |
+}; |
+ |
typedef std::vector<DetailInput> DetailInputs; |
typedef std::map<const DetailInput*, string16> DetailOutputMap; |