| Index: chrome/browser/ui/cocoa/autofill/autofill_dialog_cocoa.mm
|
| diff --git a/chrome/browser/ui/cocoa/autofill/autofill_dialog_cocoa.mm b/chrome/browser/ui/cocoa/autofill/autofill_dialog_cocoa.mm
|
| index 582c031eba101e688f458396ec51bcb5aad12946..cf1e7c4de958864f1626178f7f73ca0596c7f8e6 100644
|
| --- a/chrome/browser/ui/cocoa/autofill/autofill_dialog_cocoa.mm
|
| +++ b/chrome/browser/ui/cocoa/autofill/autofill_dialog_cocoa.mm
|
| @@ -95,8 +95,8 @@ void AutofillDialogCocoa::UpdateSection(DialogSection section) {
|
| }
|
|
|
| void AutofillDialogCocoa::FillSection(DialogSection section,
|
| - const DetailInput& originating_input) {
|
| - [sheet_delegate_ fillSection:section forInput:originating_input];
|
| + ServerFieldType originating_type) {
|
| + [sheet_delegate_ fillSection:section forType:originating_type];
|
| }
|
|
|
| void AutofillDialogCocoa::GetUserInput(DialogSection section,
|
| @@ -108,7 +108,7 @@ base::string16 AutofillDialogCocoa::GetCvc() {
|
| return base::SysNSStringToUTF16([sheet_delegate_ getCvc]);
|
| }
|
|
|
| -bool AutofillDialogCocoa::HitTestInput(const DetailInput& input,
|
| +bool AutofillDialogCocoa::HitTestInput(ServerFieldType type,
|
| const gfx::Point& screen_point) {
|
| // TODO(dbeam): implement.
|
| return false;
|
|
|