| Index: chrome/android/java/src/org/chromium/chrome/browser/autofill/PersonalDataManager.java
|
| diff --git a/chrome/android/java/src/org/chromium/chrome/browser/autofill/PersonalDataManager.java b/chrome/android/java/src/org/chromium/chrome/browser/autofill/PersonalDataManager.java
|
| index 16e47f4a723cc077429414947c30ee99264f8cc2..9e364fe0043955f96467ba42c699062c62ba7b26 100644
|
| --- a/chrome/android/java/src/org/chromium/chrome/browser/autofill/PersonalDataManager.java
|
| +++ b/chrome/android/java/src/org/chromium/chrome/browser/autofill/PersonalDataManager.java
|
| @@ -548,14 +548,14 @@ public class PersonalDataManager {
|
| * Gets the profiles to suggest when filling a form or completing a transaction. The profiles
|
| * will have been processed to be more relevant to the user.
|
| *
|
| - * @param includeName Whether to include the name in the profile's label.
|
| + * @param includeNameInLabel Whether to include the name in the profile's label.
|
| * @return The list of profiles to suggest to the user.
|
| */
|
| - public List<AutofillProfile> getProfilesToSuggest(boolean includeName) {
|
| + public List<AutofillProfile> getProfilesToSuggest(boolean includeNameInLabel) {
|
| ThreadUtils.assertOnUiThread();
|
| return getProfilesWithLabels(
|
| nativeGetProfileLabelsToSuggest(
|
| - mPersonalDataManagerAndroid, includeName),
|
| + mPersonalDataManagerAndroid, includeNameInLabel),
|
| nativeGetProfileGUIDsToSuggest(mPersonalDataManagerAndroid));
|
| }
|
|
|
| @@ -823,7 +823,7 @@ public class PersonalDataManager {
|
| private native String[] nativeGetProfileLabelsForSettings(
|
| long nativePersonalDataManagerAndroid);
|
| private native String[] nativeGetProfileLabelsToSuggest(long nativePersonalDataManagerAndroid,
|
| - boolean includeName);
|
| + boolean includeNameInLabel);
|
| private native AutofillProfile nativeGetProfileByGUID(long nativePersonalDataManagerAndroid,
|
| String guid);
|
| private native String nativeSetProfile(long nativePersonalDataManagerAndroid,
|
|
|