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

Unified Diff: chrome/android/java/src/org/chromium/chrome/browser/password_manager/AccountChooserDialog.java

Issue 2531863002: Delete all the traces of federation providers in the account chooser. (Closed)
Patch Set: android2 Created 4 years, 1 month 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
« no previous file with comments | « no previous file | chrome/android/java/src/org/chromium/chrome/browser/password_manager/Credential.java » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/android/java/src/org/chromium/chrome/browser/password_manager/AccountChooserDialog.java
diff --git a/chrome/android/java/src/org/chromium/chrome/browser/password_manager/AccountChooserDialog.java b/chrome/android/java/src/org/chromium/chrome/browser/password_manager/AccountChooserDialog.java
index ec10ac65b460f3d2e62fde67754af11567ae864d..4c41262fb1945784f7eb33a5ab13b333c6e4846c 100644
--- a/chrome/android/java/src/org/chromium/chrome/browser/password_manager/AccountChooserDialog.java
+++ b/chrome/android/java/src/org/chromium/chrome/browser/password_manager/AccountChooserDialog.java
@@ -227,7 +227,7 @@ public class AccountChooserDialog
if (!mWasDismissedByNative) {
if (mCredential != null) {
nativeOnCredentialClicked(mNativeAccountChooserDialog, mCredential.getIndex(),
- mCredential.getType(), mSigninButtonClicked);
+ mSigninButtonClicked);
} else {
nativeCancelDialog(mNativeAccountChooserDialog);
}
@@ -236,7 +236,7 @@ public class AccountChooserDialog
}
private native void nativeOnCredentialClicked(long nativeAccountChooserDialogAndroid,
- int credentialId, int credentialType, boolean signinButtonClicked);
+ int credentialId, boolean signinButtonClicked);
private native void nativeCancelDialog(long nativeAccountChooserDialogAndroid);
private native void nativeDestroy(long nativeAccountChooserDialogAndroid);
private native void nativeOnLinkClicked(long nativeAccountChooserDialogAndroid);
« no previous file with comments | « no previous file | chrome/android/java/src/org/chromium/chrome/browser/password_manager/Credential.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698