| Index: chrome/browser/ui/cocoa/autofill/autofill_section_container.h
|
| diff --git a/chrome/browser/ui/cocoa/autofill/autofill_section_container.h b/chrome/browser/ui/cocoa/autofill/autofill_section_container.h
|
| index f524993e493f5ba7eb0ff5b59a20c28b4e793b8e..b4bf70c7903626f8c11328c247c625a2913af960 100644
|
| --- a/chrome/browser/ui/cocoa/autofill/autofill_section_container.h
|
| +++ b/chrome/browser/ui/cocoa/autofill/autofill_section_container.h
|
| @@ -112,17 +112,17 @@ class AutofillDialogViewDelegate;
|
| // Retrieve the field associated with the given type.
|
| - (NSControl<AutofillInputField>*)getField:(autofill::ServerFieldType)type;
|
|
|
| -// Sets the value for the field matching |input|. Does nothing if the field is
|
| +// Sets the value for the field matching |type|. Does nothing if the field is
|
| // not part of this section.
|
| - (void)setFieldValue:(NSString*)text
|
| - forInput:(const autofill::DetailInput&)input;
|
| + forType:(autofill::ServerFieldType)type;
|
|
|
| // Sets the value for the suggestion text field.
|
| - (void)setSuggestionFieldValue:(NSString*)text;
|
|
|
| -// Activates a given input field, determined by |input|. Does nothing if the
|
| +// Activates a given input field, determined by |type|. Does nothing if the
|
| // field is not part of this section.
|
| -- (void)activateFieldForInput:(const autofill::DetailInput&)input;
|
| +- (void)activateFieldForType:(autofill::ServerFieldType)type;
|
|
|
| @end
|
|
|
|
|