summaryrefslogtreecommitdiffstats
path: root/android_webview/java
diff options
context:
space:
mode:
authormathp <mathp@chromium.org>2016-03-09 14:05:37 -0800
committerCommit bot <commit-bot@chromium.org>2016-03-09 22:47:32 +0000
commit7058cab75f6af560f2e27b5299583e6b9f4ac180 (patch)
tree61352168707c66c3b36cac65e12367342659e0f1 /android_webview/java
parenta554c65c3b5fd929e602bf7d2e82bc1e7ba05fda (diff)
downloadchromium_src-7058cab75f6af560f2e27b5299583e6b9f4ac180.zip
chromium_src-7058cab75f6af560f2e27b5299583e6b9f4ac180.tar.gz
chromium_src-7058cab75f6af560f2e27b5299583e6b9f4ac180.tar.bz2
[Autofill Popup] Support for multiline labels in dropdown list items.
BUG=527428 TBR=torne Review URL: https://codereview.chromium.org/1764763002 Cr-Commit-Position: refs/heads/master@{#380235}
Diffstat (limited to 'android_webview/java')
-rw-r--r--android_webview/java/src/org/chromium/android_webview/AwAutofillClient.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/android_webview/java/src/org/chromium/android_webview/AwAutofillClient.java b/android_webview/java/src/org/chromium/android_webview/AwAutofillClient.java
index bccd5c6c..172c2b3 100644
--- a/android_webview/java/src/org/chromium/android_webview/AwAutofillClient.java
+++ b/android_webview/java/src/org/chromium/android_webview/AwAutofillClient.java
@@ -87,7 +87,8 @@ public class AwAutofillClient {
@CalledByNative
private static void addToAutofillSuggestionArray(AutofillSuggestion[] array, int index,
String name, String label, int uniqueId) {
- array[index] = new AutofillSuggestion(name, label, DropdownItem.NO_ICON, uniqueId, false);
+ array[index] =
+ new AutofillSuggestion(name, label, DropdownItem.NO_ICON, uniqueId, false, false);
}
private native void nativeSuggestionSelected(long nativeAwAutofillClient,