| Index: ios/web/payments/payment_request.cc
|
| diff --git a/ios/web/payments/payment_request.cc b/ios/web/payments/payment_request.cc
|
| index 95b4e9818a88db7141a95384a2e3062204b852bc..ca77381e8821f6f40da6535f37a50e3366ee95a0 100644
|
| --- a/ios/web/payments/payment_request.cc
|
| +++ b/ios/web/payments/payment_request.cc
|
| @@ -21,7 +21,6 @@ static const char kAddressSortingCode[] = "sortingCode";
|
| static const char kAddressLanguageCode[] = "languageCode";
|
| static const char kAddressOrganization[] = "organization";
|
| static const char kAddressRecipient[] = "recipient";
|
| -static const char kAddressCareOf[] = "careOf";
|
| static const char kAddressPhone[] = "phone";
|
| static const char kMethodData[] = "methodData";
|
| static const char kSupportedMethods[] = "supportedMethods";
|
| @@ -95,8 +94,6 @@ std::unique_ptr<base::DictionaryValue> PaymentAddress::ToDictionaryValue()
|
| result->SetString(kAddressOrganization, this->organization);
|
| if (!this->recipient.empty())
|
| result->SetString(kAddressRecipient, this->recipient);
|
| - if (!this->care_of.empty())
|
| - result->SetString(kAddressCareOf, this->care_of);
|
| if (!this->phone.empty())
|
| result->SetString(kAddressPhone, this->phone);
|
|
|
|
|