| Index: chrome/browser/ui/autofill/autofill_dialog_view_delegate.h
|
| diff --git a/chrome/browser/ui/autofill/autofill_dialog_view_delegate.h b/chrome/browser/ui/autofill/autofill_dialog_view_delegate.h
|
| index 3e3f9423e9c9d50c1f8165a08e1ae330d4091f3b..19c051c4d6f39df31c4ed00e6d97ad20b2f08359 100644
|
| --- a/chrome/browser/ui/autofill/autofill_dialog_view_delegate.h
|
| +++ b/chrome/browser/ui/autofill/autofill_dialog_view_delegate.h
|
| @@ -16,6 +16,7 @@
|
| #include "ui/gfx/native_widget_types.h"
|
| #include "ui/gfx/range/range.h"
|
|
|
| +class FieldValueMap;
|
| class GURL;
|
| class Profile;
|
|
|
| @@ -35,7 +36,6 @@ class MenuModel;
|
|
|
| namespace autofill {
|
|
|
| -typedef std::map<ServerFieldType, string16> FieldValueMap;
|
| typedef std::map<ServerFieldType, gfx::Image> FieldIconMap;
|
|
|
| // This class defines the interface to the controller that the dialog view sees.
|
| @@ -150,7 +150,7 @@ class AutofillDialogViewDelegate {
|
| // Decides whether the combination of all |inputs| is valid, returns a
|
| // map of field types to validity messages.
|
| virtual ValidityMessages InputsAreValid(DialogSection section,
|
| - const DetailOutputMap& inputs) = 0;
|
| + const FieldValueMap& inputs) = 0;
|
|
|
| // Called when the user changes the contents of a text field or activates it
|
| // (by focusing and then clicking it). |was_edit| is true when the function
|
|
|