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

Unified Diff: chrome/browser/ui/views/autofill/autofill_dialog_views.h

Issue 85863003: Change DetailOutputMap to FieldValueMap (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix tests Created 7 years, 1 month 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/views/autofill/autofill_dialog_views.h
diff --git a/chrome/browser/ui/views/autofill/autofill_dialog_views.h b/chrome/browser/ui/views/autofill/autofill_dialog_views.h
index c153087274c6646c2c082615848d5642b0cfd111..e909576c38ccb5c8366d5d907e8f33890072c9df 100644
--- a/chrome/browser/ui/views/autofill/autofill_dialog_views.h
+++ b/chrome/browser/ui/views/autofill/autofill_dialog_views.h
@@ -89,7 +89,7 @@ class AutofillDialogViews : public AutofillDialogView,
virtual void FillSection(DialogSection section,
const DetailInput& originating_input) OVERRIDE;
virtual void GetUserInput(DialogSection section,
- DetailOutputMap* output) OVERRIDE;
+ FieldValueMap* output) OVERRIDE;
virtual base::string16 GetCvc() OVERRIDE;
virtual bool HitTestInput(const DetailInput& input,
const gfx::Point& screen_point) OVERRIDE;
@@ -303,8 +303,8 @@ class AutofillDialogViews : public AutofillDialogView,
DISALLOW_COPY_AND_ASSIGN(NotificationArea);
};
- typedef std::map<const DetailInput*, DecoratedTextfield*> TextfieldMap;
- typedef std::map<const DetailInput*, views::Combobox*> ComboboxMap;
+ typedef std::map<ServerFieldType, DecoratedTextfield*> TextfieldMap;
+ typedef std::map<ServerFieldType, views::Combobox*> ComboboxMap;
// A view that packs a label on the left and some related controls
// on the right.

Powered by Google App Engine
This is Rietveld 408576698