| Index: ui/android/java/src/org/chromium/ui/autofill/AutofillPopup.java
|
| diff --git a/ui/android/java/src/org/chromium/ui/autofill/AutofillPopup.java b/ui/android/java/src/org/chromium/ui/autofill/AutofillPopup.java
|
| index d66fcffcbf400538a17e9feb365a7180a51f0e30..865cff26857e712aa9d946d2f47fddb6f98cdc13 100644
|
| --- a/ui/android/java/src/org/chromium/ui/autofill/AutofillPopup.java
|
| +++ b/ui/android/java/src/org/chromium/ui/autofill/AutofillPopup.java
|
| @@ -14,7 +14,6 @@ import org.chromium.ui.DropdownAdapter;
|
| import org.chromium.ui.DropdownItem;
|
| import org.chromium.ui.DropdownPopupWindow;
|
| import org.chromium.ui.R;
|
| -import org.chromium.ui.base.ViewAndroidDelegate;
|
|
|
| import java.util.ArrayList;
|
| import java.util.Arrays;
|
| @@ -40,12 +39,11 @@ public class AutofillPopup extends DropdownPopupWindow implements AdapterView.On
|
| /**
|
| * Creates an AutofillWindow with specified parameters.
|
| * @param context Application context.
|
| - * @param viewAndroidDelegate View delegate used to add and remove views.
|
| + * @param anchorView View anchored for popup.
|
| * @param autofillDelegate An object that handles the calls to the native AutofillPopupView.
|
| */
|
| - public AutofillPopup(Context context, ViewAndroidDelegate viewAndroidDelegate,
|
| - AutofillDelegate autofillDelegate) {
|
| - super(context, viewAndroidDelegate);
|
| + public AutofillPopup(Context context, View anchorView, AutofillDelegate autofillDelegate) {
|
| + super(context, anchorView);
|
| mContext = context;
|
| mAutofillDelegate = autofillDelegate;
|
|
|
|
|