| 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);
|
|
|