Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2271)

Unified Diff: chrome/browser/ui/autofill/autofill_dialog_types.h

Issue 22009003: [Autofill] Distinguish between native field types and potentially HTML field types. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 7 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 94f312b6264918e3cc3cfe1aac70ac06d7681567..c31b0d73c1cc883f2112f0ef07389693a9afebbb 100644
--- a/chrome/browser/ui/autofill/autofill_dialog_types.h
+++ b/chrome/browser/ui/autofill/autofill_dialog_types.h
@@ -38,7 +38,7 @@ struct DetailInput {
// kBillingInputs. If negative, don't show the input at all (leave it hidden
// at all times).
int row_id;
- AutofillFieldType type;
+ ServerFieldType type;
// Placeholder text resource ID.
int placeholder_text_rid;
// A number between 0 and 1.0 that describes how much of the horizontal space
@@ -234,7 +234,7 @@ enum ValidationType {
typedef std::vector<DetailInput> DetailInputs;
typedef std::map<const DetailInput*, string16> DetailOutputMap;
-typedef std::map<AutofillFieldType, string16> ValidityData;
+typedef std::map<ServerFieldType, string16> ValidityData;
// Returns the AutofillMetrics::DIALOG_UI_*_EDIT_UI_SHOWN metric corresponding
// to the |section|.

Powered by Google App Engine
This is Rietveld 408576698