| Index: chrome/browser/ui/autofill/new_credit_card_bubble_controller.cc
|
| diff --git a/chrome/browser/ui/autofill/new_credit_card_bubble_controller.cc b/chrome/browser/ui/autofill/new_credit_card_bubble_controller.cc
|
| index 2fb5db3a97e42804799353cca11dc5fce62e9306..e89d6e5cc150a07ea3bdf6cbaa8e3822ca67013a 100644
|
| --- a/chrome/browser/ui/autofill/new_credit_card_bubble_controller.cc
|
| +++ b/chrome/browser/ui/autofill/new_credit_card_bubble_controller.cc
|
| @@ -112,7 +112,8 @@ void NewCreditCardBubbleController::SetupAndShow(
|
| card_desc_.name = new_card_->TypeAndLastFourDigits();
|
|
|
| AutofillProfileWrapper wrapper(billing_profile_.get(), 0);
|
| - card_desc_.description = wrapper.GetDisplayText();
|
| + base::string16 unused;
|
| + wrapper.GetDisplayText(&card_desc_.description, &unused);
|
|
|
| bubble_ = CreateBubble();
|
| if (!bubble_) {
|
|
|