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

Unified Diff: chrome/android/java/src/org/chromium/chrome/browser/autofill/AutofillPopupGlue.java

Issue 11778043: Cleaning up Android's Autofill call suggestionSelected. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixing the test Created 7 years, 11 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: 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);
}

Powered by Google App Engine
This is Rietveld 408576698