| Index: chrome/browser/autofill/autofill_dialog_mac.mm
|
| ===================================================================
|
| --- chrome/browser/autofill/autofill_dialog_mac.mm (revision 46425)
|
| +++ chrome/browser/autofill/autofill_dialog_mac.mm (working copy)
|
| @@ -10,11 +10,10 @@
|
|
|
| // Mac implementation of |ShowAutoFillDialog| interface defined in
|
| // |chrome/browser/autofill/autofill_dialog.h|.
|
| -void ShowAutoFillDialog(gfx::NativeView parent,
|
| - AutoFillDialogObserver* observer,
|
| - Profile* profile,
|
| - AutoFillProfile* imported_profile,
|
| - CreditCard* imported_credit_card) {
|
| +void ShowAutoFillDialog(AutoFillDialogObserver* observer,
|
| + const std::vector<AutoFillProfile*>& profiles,
|
| + const std::vector<CreditCard*>& credit_cards,
|
| + Profile *profile) {
|
| // It's possible we haven't shown the InfoBar yet, but if the user is in the
|
| // AutoFill dialog, she doesn't need to be asked to enable or disable
|
| // AutoFill.
|
| @@ -22,7 +21,8 @@
|
|
|
| [AutoFillDialogController
|
| showAutoFillDialogWithObserver:observer
|
| - profile:profile
|
| - importedProfile:imported_profile
|
| - importedCreditCard:imported_credit_card];
|
| + autoFillProfiles:profiles
|
| + creditCards:credit_cards
|
| + profile:profile];
|
| }
|
| +
|
|
|