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

Unified Diff: chrome/browser/ui/autofill/autofill_dialog_controller_impl.h

Issue 23756007: [rac] Show amex specific cvc hint (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Enable going from icon to no icon Created 7 years, 3 months 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 81c9cf04a8aac102490a9b70c39e165c01f54d01..69c4389220f6e0049297a18cb6cf2404b325249a 100644
--- a/chrome/browser/ui/autofill/autofill_dialog_controller_impl.h
+++ b/chrome/browser/ui/autofill/autofill_dialog_controller_impl.h
@@ -132,8 +132,13 @@ class AutofillDialogControllerImpl : public AutofillDialogViewDelegate,
virtual string16 LabelForSection(DialogSection section) const OVERRIDE;
virtual SuggestionState SuggestionStateForSection(
DialogSection section) OVERRIDE;
+ // 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;
+ 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 +435,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.

Powered by Google App Engine
This is Rietveld 408576698