Chromium Code Reviews| 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 81c9cf04a8aac102490a9b70c39e165c01f54d01..0c055a1741e4b0532a016db693e9ac8758bbc0ca 100644 |
| --- a/chrome/browser/ui/autofill/autofill_dialog_controller_impl.h |
| +++ b/chrome/browser/ui/autofill/autofill_dialog_controller_impl.h |
| @@ -132,8 +132,15 @@ class AutofillDialogControllerImpl : public AutofillDialogViewDelegate, |
| virtual string16 LabelForSection(DialogSection section) const OVERRIDE; |
| virtual SuggestionState SuggestionStateForSection( |
| DialogSection section) OVERRIDE; |
| + |
|
Evan Stade
2013/09/16 23:36:59
^H
please use gerrit instead
2013/09/17 00:38:17
Done.
|
| + // TODO(groby): Remove this deprecated method after Mac starts using |
| + // IconsForFields. http://crbug.com/292876 |
| virtual gfx::Image IconForField(ServerFieldType type, |
| const string16& user_input) const OVERRIDE; |
| + |
|
Evan Stade
2013/09/16 23:36:59
^H
please use gerrit instead
2013/09/17 00:38:17
Done.
|
| + virtual FieldIconMap IconsForFields(const FieldValueMap& user_inputs) |
| + const OVERRIDE; |
| + virtual bool FieldControlsIcons(ServerFieldType type) const OVERRIDE; |
| virtual string16 InputValidityMessage(DialogSection section, |
| ServerFieldType type, |
| const string16& value) OVERRIDE; |
| @@ -430,7 +437,7 @@ class AutofillDialogControllerImpl : public AutofillDialogViewDelegate, |
| string16 RequiredActionTextForSection(DialogSection section) const; |
| gfx::Image SuggestionIconForSection(DialogSection section); |
| string16 ExtraSuggestionTextForSection(DialogSection section) const; |
| - gfx::Image ExtraSuggestionIconForSection(DialogSection section) const; |
| + gfx::Image ExtraSuggestionIconForSection(DialogSection section); |
| // Loads profiles that can suggest data for |type|. |field_contents| is the |
| // part the user has already typed. |inputs| is the rest of section. |