| Index: chrome/browser/autofill/autofill_dialog_mac.mm
|
| ===================================================================
|
| --- chrome/browser/autofill/autofill_dialog_mac.mm (revision 40742)
|
| +++ chrome/browser/autofill/autofill_dialog_mac.mm (working copy)
|
| @@ -4,15 +4,18 @@
|
|
|
| #import "chrome/browser/autofill/autofill_dialog_controller_mac.h"
|
| #include "chrome/browser/autofill/autofill_dialog.h"
|
| +#include "chrome/browser/profile.h"
|
|
|
| // Mac implementation of |ShowAutoFillDialog| interface defined in
|
| // |chrome/browser/autofill/autofill_dialog.h|.
|
| void ShowAutoFillDialog(AutoFillDialogObserver* observer,
|
| const std::vector<AutoFillProfile*>& profiles,
|
| - const std::vector<CreditCard*>& credit_cards) {
|
| + const std::vector<CreditCard*>& credit_cards,
|
| + Profile *profile) {
|
| [AutoFillDialogController
|
| showAutoFillDialogWithObserver:observer
|
| - autoFillProfiles:profiles
|
| - creditCards:credit_cards];
|
| + autoFillProfiles:profiles
|
| + creditCards:credit_cards
|
| + profile:profile];
|
| }
|
|
|
|
|