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

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: . 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..941b83ee67bdedf7cbd95c75b873640344ec5a87 100644
--- a/chrome/browser/ui/autofill/autofill_dialog_controller_impl.h
+++ b/chrome/browser/ui/autofill/autofill_dialog_controller_impl.h
@@ -137,7 +137,7 @@ 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,
gfx::NativeView parent_view,
@@ -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