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

Unified Diff: chrome/browser/ui/autofill/autofill_dialog_controller_impl.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/autofill/autofill_dialog_controller_impl.h
diff --git a/chrome/browser/ui/autofill/autofill_dialog_controller_impl.h b/chrome/browser/ui/autofill/autofill_dialog_controller_impl.h
index 8091f5be2636c82a1146d11bcc6c949e9553f95d..1bc135cf9b4310143f096b803ffa30514eafcb4b 100644
--- a/chrome/browser/ui/autofill/autofill_dialog_controller_impl.h
+++ b/chrome/browser/ui/autofill/autofill_dialog_controller_impl.h
@@ -137,9 +137,9 @@ class AutofillDialogControllerImpl : public AutofillDialogViewDelegate,
ServerFieldType type,
const string16& value) OVERRIDE;
virtual ValidityMessages InputsAreValid(
- DialogSection section, const DetailOutputMap& inputs) OVERRIDE;
+ DialogSection section, const FieldValueMap& inputs) OVERRIDE;
virtual void UserEditedOrActivatedInput(DialogSection section,
- const DetailInput* input,
+ ServerFieldType type,
gfx::NativeView parent_view,
const gfx::Rect& content_bounds,
const string16& field_contents,
@@ -356,11 +356,11 @@ class AutofillDialogControllerImpl : public AutofillDialogViewDelegate,
const base::string16& value);
// Takes a snapshot of the newly inputted user data in |view_| (if it exists).
- DetailOutputMap TakeUserInputSnapshot();
+ FieldValueMap TakeUserInputSnapshot();
// Fills the detail inputs from a previously taken user input snapshot. Does
// not update the view.
- void RestoreUserInputFromSnapshot(const DetailOutputMap& snapshot);
+ void RestoreUserInputFromSnapshot(const FieldValueMap& snapshot);
// Tells the view to update |section|.
void UpdateSection(DialogSection section);

Powered by Google App Engine
This is Rietveld 408576698