Commit 1dd53d93 authored by aurimas@chromium.org's avatar aurimas@chromium.org

Change the visibility of AutofillSuggestion member variables.

BUG=None

Review URL: https://codereview.chromium.org/491023004

Cr-Commit-Position: refs/heads/master@{#291294}
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@291294 0039d316-1c4b-4281-b951-d872f2087c98
parent f561a7c8
......@@ -84,7 +84,7 @@ public class AutofillPopup extends DropdownPopupWindow implements AdapterView.On
ArrayList<DropdownItem> cleanedData = new ArrayList<DropdownItem>();
HashSet<Integer> separators = new HashSet<Integer>();
for (int i = 0; i < suggestions.length; i++) {
int itemId = suggestions[i].mUniqueId;
int itemId = suggestions[i].getUniqueId();
if (itemId > 0 || itemId == ITEM_ID_AUTOCOMPLETE_ENTRY ||
itemId == ITEM_ID_PASSWORD_ENTRY || itemId == ITEM_ID_DATA_LIST_ENTRY) {
cleanedData.add(suggestions[i]);
......
......@@ -10,9 +10,9 @@ import org.chromium.ui.DropdownItem;
* Autofill suggestion container used to store information needed for each Autofill popup entry.
*/
public class AutofillSuggestion implements DropdownItem {
final String mLabel;
final String mSublabel;
final int mUniqueId;
private final String mLabel;
private final String mSublabel;
private final int mUniqueId;
/**
* Constructs a Autofill suggestion container.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment