| Index: chrome/browser/ui/views/payments/profile_list_view_controller.cc
|
| diff --git a/chrome/browser/ui/views/payments/profile_list_view_controller.cc b/chrome/browser/ui/views/payments/profile_list_view_controller.cc
|
| index c026f5fcc2163df0ab244e26e78ea72c18f01341..fa6cf938fdb683fe385b49beda760855718d0a3e 100644
|
| --- a/chrome/browser/ui/views/payments/profile_list_view_controller.cc
|
| +++ b/chrome/browser/ui/views/payments/profile_list_view_controller.cc
|
| @@ -122,7 +122,7 @@ class ShippingProfileViewController : public ProfileListViewController {
|
| }
|
|
|
| base::string16 GetSheetTitle() override {
|
| - return GetShippingAddressSectionString(spec()->options().shipping_type);
|
| + return GetShippingAddressSectionString(spec()->shipping_type());
|
| }
|
|
|
| int GetSecondaryButtonTextId() override {
|
| @@ -160,10 +160,9 @@ class ContactProfileViewController : public ProfileListViewController {
|
| // ProfileListViewController:
|
| std::unique_ptr<views::View> GetLabel(
|
| autofill::AutofillProfile* profile) override {
|
| - return GetContactInfoLabel(
|
| - AddressStyleType::DETAILED, state()->GetApplicationLocale(), *profile,
|
| - spec()->request_payer_name(), spec()->request_payer_phone(),
|
| - spec()->request_payer_email());
|
| + return GetContactInfoLabel(AddressStyleType::DETAILED,
|
| + state()->GetApplicationLocale(), *profile,
|
| + *spec());
|
| }
|
|
|
| void SelectProfile(autofill::AutofillProfile* profile) override {
|
|
|