| Index: chrome/browser/autofill/android/personal_data_manager_android.h
|
| diff --git a/chrome/browser/autofill/android/personal_data_manager_android.h b/chrome/browser/autofill/android/personal_data_manager_android.h
|
| index f04868aeef20d5734108d42d1ca0e904296b52b3..f2ba27475c384fc640269483e496ebbd921f8bd6 100644
|
| --- a/chrome/browser/autofill/android/personal_data_manager_android.h
|
| +++ b/chrome/browser/autofill/android/personal_data_manager_android.h
|
| @@ -89,10 +89,20 @@ class PersonalDataManagerAndroid
|
| jboolean include_organization_in_label,
|
| jboolean include_country_in_label);
|
|
|
| - // Returns the label of the given profile for PaymentRequest. This label does
|
| - // not contain the full name or the email address. All other fields are
|
| - // included in the label.
|
| - base::android::ScopedJavaLocalRef<jstring> GetAddressLabelForPaymentRequest(
|
| + // Returns the shipping label of the given profile for PaymentRequest. This
|
| + // label does not contain the full name or the email address. All other fields
|
| + // are included in the label.
|
| + base::android::ScopedJavaLocalRef<jstring>
|
| + GetShippingAddressLabelForPaymentRequest(
|
| + JNIEnv* env,
|
| + const base::android::JavaParamRef<jobject>& unused_obj,
|
| + const base::android::JavaParamRef<jobject>& jprofile);
|
| +
|
| + // Returns the billing label of the given profile for PaymentRequest. This
|
| + // label does not contain the company name, the phone number, the country or
|
| + // the email address. All other fields are included in the label.
|
| + base::android::ScopedJavaLocalRef<jstring>
|
| + GetBillingAddressLabelForPaymentRequest(
|
| JNIEnv* env,
|
| const base::android::JavaParamRef<jobject>& unused_obj,
|
| const base::android::JavaParamRef<jobject>& jprofile);
|
|
|