Chromium Code Reviews| 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 a6df86fc1905ed271a2f38558f1e9ac3e58907f2..b0b4882fc8826bfe388fe91c48672feb51164395 100644 |
| --- a/chrome/browser/autofill/android/personal_data_manager_android.h |
| +++ b/chrome/browser/autofill/android/personal_data_manager_android.h |
| @@ -61,13 +61,20 @@ class PersonalDataManagerAndroid : public PersonalDataManagerObserver { |
| // Gets the labels for the profiles to suggest to the user. These labels are |
| // useful for distinguishing the profiles from one another. |
| // |
| - // The labels never contain the full name. Fields such as phone number and |
| - // email address are also omitted, but all other fields are included in the |
| - // label. |
| + // The labels never contain the full name or email address. All other fields |
| + // are included in the label. |
| base::android::ScopedJavaLocalRef<jobjectArray> GetProfileLabelsToSuggest( |
| JNIEnv* env, |
| const base::android::JavaParamRef<jobject>& unused_obj); |
| + // 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 |
| + // include in the label. |
|
gone
2016/06/28 17:30:29
included
please use gerrit instead
2016/06/29 00:28:45
Next you're going to tell me "All your base are be
gone
2016/06/29 17:12:45
Launch all zig.
|
| + base::android::ScopedJavaLocalRef<jstring> GetAddressLabelForPaymentRequest( |
| + JNIEnv* env, |
| + const base::android::JavaParamRef<jobject>& unused_obj, |
| + const base::android::JavaParamRef<jobject>& jprofile); |
| + |
| // These functions act on local credit cards. |
| // -------------------- |