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 59e5ecbd5f0c443846c0cf30ad7857fa619d4776..f26a235e4586e72c3f0951bf24a042711beaf72d 100644 |
--- a/chrome/browser/ui/autofill/autofill_dialog_types.h |
+++ b/chrome/browser/ui/autofill/autofill_dialog_types.h |
@@ -153,6 +153,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; |