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

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

Issue 22009003: [Autofill] Distinguish between native field types and potentially HTML field types. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 7 years, 4 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/mock_autofill_dialog_view_delegate.h
diff --git a/chrome/browser/ui/autofill/mock_autofill_dialog_view_delegate.h b/chrome/browser/ui/autofill/mock_autofill_dialog_view_delegate.h
index e5f564fd9c4b95d04ff390415a472498777b7116..a02c32c6631cd2c8d817ecf2c275e6997e349674 100644
--- a/chrome/browser/ui/autofill/mock_autofill_dialog_view_delegate.h
+++ b/chrome/browser/ui/autofill/mock_autofill_dialog_view_delegate.h
@@ -39,16 +39,16 @@ class MockAutofillDialogViewDelegate : public AutofillDialogViewDelegate {
MOCK_CONST_METHOD1(RequestedFieldsForSection,
const DetailInputs&(DialogSection));
MOCK_METHOD1(ComboboxModelForAutofillType,
- ui::ComboboxModel*(AutofillFieldType));
+ ui::ComboboxModel*(ServerFieldType));
MOCK_METHOD1(MenuModelForSection, ui::MenuModel*(DialogSection));
MOCK_CONST_METHOD1(LabelForSection, string16(DialogSection section));
MOCK_METHOD1(SuggestionStateForSection, SuggestionState(DialogSection));
MOCK_METHOD1(EditClickedForSection, void(DialogSection section));
MOCK_METHOD1(EditCancelledForSection, void(DialogSection section));
MOCK_CONST_METHOD2(IconForField,
- gfx::Image(AutofillFieldType, const string16&));
+ gfx::Image(ServerFieldType, const string16&));
MOCK_METHOD3(InputValidityMessage,
- string16(DialogSection, AutofillFieldType, const string16&));
+ string16(DialogSection, ServerFieldType, const string16&));
MOCK_METHOD3(InputsAreValid, ValidityData(DialogSection,
const DetailOutputMap&,
ValidationType));

Powered by Google App Engine
This is Rietveld 408576698