| Index: chrome/browser/autofill/autofill_dialog_gtk.cc
|
| diff --git a/chrome/browser/autofill/autofill_dialog_gtk.cc b/chrome/browser/autofill/autofill_dialog_gtk.cc
|
| index 14f9777c948d636c5df3c71d544590fb77aa5ad1..48a6903187765a71fb858841f13287039be00dcb 100644
|
| --- a/chrome/browser/autofill/autofill_dialog_gtk.cc
|
| +++ b/chrome/browser/autofill/autofill_dialog_gtk.cc
|
| @@ -978,16 +978,14 @@ int AutoFillDialog::FindIndexOfAddress(string16 billing_address) {
|
|
|
| void ShowAutoFillDialog(gfx::NativeView parent,
|
| AutoFillDialogObserver* observer,
|
| - Profile* profile,
|
| - AutoFillProfile* imported_profile,
|
| - CreditCard* imported_credit_card) {
|
| + Profile* profile) {
|
| DCHECK(profile);
|
|
|
| if (!dialog) {
|
| dialog = new AutoFillDialog(observer,
|
| profile->GetPersonalDataManager(),
|
| - imported_profile,
|
| - imported_credit_card);
|
| + NULL,
|
| + NULL);
|
| }
|
| dialog->Show();
|
| }
|
|
|