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

Unified Diff: ui/android/java/src/org/chromium/ui/autofill/AutofillSuggestion.java

Issue 1260583004: Gray horizontal keyboard accessory (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Newton's comments Created 5 years, 4 months 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/autofill/AutofillSuggestion.java
diff --git a/ui/android/java/src/org/chromium/ui/autofill/AutofillSuggestion.java b/ui/android/java/src/org/chromium/ui/autofill/AutofillSuggestion.java
index 772b4b550f0c8e0055f6dbdb79b5428a449b7e7d..df91823b23a84587a78835ae9de23ebcd1036d4d 100644
--- a/ui/android/java/src/org/chromium/ui/autofill/AutofillSuggestion.java
+++ b/ui/android/java/src/org/chromium/ui/autofill/AutofillSuggestion.java
@@ -18,15 +18,15 @@ public class AutofillSuggestion implements DropdownItem {
/**
* Constructs a Autofill suggestion container.
- * @param name The name of the Autofill suggestion.
- * @param label The describing label of the Autofill suggestion.
+ * @param label The main label of the Autofill suggestion.
+ * @param sublabel The describing sublabel of the Autofill suggestion.
* @param suggestionId The type of suggestion.
* @param deletable Whether the item can be deleted by the user.
*/
public AutofillSuggestion(
- String name, String label, int iconId, int suggestionId, boolean deletable) {
- mLabel = name;
- mSublabel = label;
+ String label, String sublabel, int iconId, int suggestionId, boolean deletable) {
+ mLabel = label;
+ mSublabel = sublabel;
mIconId = iconId;
mSuggestionId = suggestionId;
mDeletable = deletable;

Powered by Google App Engine
This is Rietveld 408576698