| Index: chrome/android/java/src/org/chromium/chrome/browser/autofill/AutofillKeyboardAccessoryBridge.java
|
| diff --git a/chrome/android/java/src/org/chromium/chrome/browser/autofill/AutofillKeyboardAccessoryBridge.java b/chrome/android/java/src/org/chromium/chrome/browser/autofill/AutofillKeyboardAccessoryBridge.java
|
| index a01f2f75f4711b65791ed848f977375b2263d4e1..a2109bad36d8399875ec4eed252ab1e1af7b6465 100644
|
| --- a/chrome/android/java/src/org/chromium/chrome/browser/autofill/AutofillKeyboardAccessoryBridge.java
|
| +++ b/chrome/android/java/src/org/chromium/chrome/browser/autofill/AutofillKeyboardAccessoryBridge.java
|
| @@ -144,13 +144,15 @@ public class AutofillKeyboardAccessoryBridge
|
| * empty too.
|
| * @param iconId The resource ID for the icon associated with the suggestion, or 0 for no icon.
|
| * @param suggestionId Identifier for the suggestion type.
|
| + * @param isDeletable Whether the item can be deleted by the user.
|
| */
|
| @CalledByNative
|
| private static void addToAutofillSuggestionArray(AutofillSuggestion[] array, int index,
|
| - String label, String sublabel, int iconId, int suggestionId, boolean deletable) {
|
| + String label, String sublabel, int iconId, int suggestionId, boolean isDeletable) {
|
| int drawableId = iconId == 0 ? DropdownItem.NO_ICON : ResourceId.mapToDrawableId(iconId);
|
| - array[index] =
|
| - new AutofillSuggestion(label, sublabel, drawableId, suggestionId, deletable, false);
|
| + array[index] = new AutofillSuggestion(label, sublabel, drawableId,
|
| + false /* isIconAtStart */, suggestionId, isDeletable, false /* isMultilineLabel */,
|
| + false /* isBoldLabel */);
|
| }
|
|
|
| private native void nativeViewDismissed(long nativeAutofillKeyboardAccessoryView);
|
|
|