Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1116)

Unified Diff: ui/android/java/src/org/chromium/ui/DropdownItem.java

Issue 2531223003: Expanded Autofill Credit Card Popup Layout Experiment in Android. (Closed)
Patch Set: Fix merge error in AutofillSuggestion.java Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: ui/android/java/src/org/chromium/ui/DropdownItem.java
diff --git a/ui/android/java/src/org/chromium/ui/DropdownItem.java b/ui/android/java/src/org/chromium/ui/DropdownItem.java
index 0a55bb0662d1f6f33bfebea0088c973bd1fb97ff..58644d90452db27d1787925887aa07ea29ddaba0 100644
--- a/ui/android/java/src/org/chromium/ui/DropdownItem.java
+++ b/ui/android/java/src/org/chromium/ui/DropdownItem.java
@@ -36,6 +36,10 @@ public interface DropdownItem {
*/
boolean isMultilineLabel();
/**
+ * Returns whether the label should be displayed in bold.
+ */
+ boolean isBoldLabel();
+ /**
* Returns resource ID of label's font color.
*/
int getLabelFontColorResId();
@@ -43,4 +47,9 @@ public interface DropdownItem {
* Returns resource ID of label's font size.
*/
int getLabelFontSizeResId();
+ /**
+ * Returns whether the icon should be displayed at the start, before label
+ * and sublabel.
+ */
+ boolean isIconAtStart();
}

Powered by Google App Engine
This is Rietveld 408576698