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 67a9bff876b930eb5f1a2eff58c178cd36878eeb..b0c91d6b7c61de2c12386c3beae9246efb7304a6 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 |
@@ -35,8 +35,8 @@ public class AutofillPopupGlue implements AutofillPopupDelegate{ |
} |
@Override |
- public void suggestionSelected(int listIndex, String value, int uniqueId) { |
- nativeSuggestionSelected(mNativeAutofillPopup, listIndex, value, uniqueId); |
+ public void suggestionSelected(int listIndex) { |
+ nativeSuggestionSelected(mNativeAutofillPopup, listIndex); |
} |
/** |
@@ -84,6 +84,6 @@ public class AutofillPopupGlue implements AutofillPopupDelegate{ |
private native void nativeDismissed(int nativeAutofillPopupViewAndroid); |
private native void nativeSuggestionSelected(int nativeAutofillPopupViewAndroid, |
- int listIndex, String value, int uniqueId); |
+ int listIndex); |
} |