Index: chrome/android/java/src/org/chromium/chrome/browser/autofill/AutofillPopupGlue.java |
diff --git a/chrome/android/java/src/org/chromium/chrome/browser/autofill/AutofillPopupGlue.java b/chrome/android/java/src/org/chromium/chrome/browser/autofill/AutofillPopupGlue.java |
index 34dca60c8e769915eedab1e453bc99d5a119ff41..8babb47851aeaf2bfd328bc0871a5d7364084643 100644 |
--- a/chrome/android/java/src/org/chromium/chrome/browser/autofill/AutofillPopupGlue.java |
+++ b/chrome/android/java/src/org/chromium/chrome/browser/autofill/AutofillPopupGlue.java |
@@ -8,7 +8,7 @@ import org.chromium.base.CalledByNative; |
import org.chromium.base.JNINamespace; |
import org.chromium.chrome.browser.autofill.AutofillPopup.AutofillPopupDelegate; |
import org.chromium.content.browser.ContainerViewDelegate; |
-import org.chromium.ui.gfx.NativeWindow; |
+import org.chromium.ui.WindowAndroid; |
/** |
* JNI call glue for AutofillExternalDelagate C++ and Java objects. |
@@ -18,7 +18,7 @@ public class AutofillPopupGlue implements AutofillPopupDelegate{ |
private final int mNativeAutofillPopup; |
private final AutofillPopup mAutofillPopup; |
- public AutofillPopupGlue(int nativeAutofillPopupViewAndroid, NativeWindow nativeWindow, |
+ public AutofillPopupGlue(int nativeAutofillPopupViewAndroid, WindowAndroid nativeWindow, |
ContainerViewDelegate containerViewDelegate) { |
mNativeAutofillPopup = nativeAutofillPopupViewAndroid; |
mAutofillPopup = new AutofillPopup(nativeWindow, containerViewDelegate, this); |
@@ -26,7 +26,7 @@ public class AutofillPopupGlue implements AutofillPopupDelegate{ |
@CalledByNative |
private static AutofillPopupGlue create(int nativeAutofillPopupViewAndroid, |
- NativeWindow nativeWindow, ContainerViewDelegate containerViewDelegate) { |
+ WindowAndroid nativeWindow, ContainerViewDelegate containerViewDelegate) { |
return new AutofillPopupGlue(nativeAutofillPopupViewAndroid, nativeWindow, |
containerViewDelegate); |
} |