| 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..875f941fdb5420ead6f3382d6dd4bb7e7434b33f 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
|
| @@ -149,8 +149,8 @@ public class AutofillKeyboardAccessoryBridge
|
| private static void addToAutofillSuggestionArray(AutofillSuggestion[] array, int index,
|
| String label, String sublabel, int iconId, int suggestionId, boolean deletable) {
|
| 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, suggestionId, deletable,
|
| + false /* isMultilineLabel */, false /* isBoldLabel */);
|
| }
|
|
|
| private native void nativeViewDismissed(long nativeAutofillKeyboardAccessoryView);
|
|
|