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

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

Issue 2811803002: Fixes accessibility navigation out of autofill popup. (Closed)
Patch Set: Renames OnAutofillPopupAccessibilityFocusCleared to GetIdForElementAfterElementHostingAutofillPopup. Created 3 years, 8 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/AutofillPopupBridge.java
diff --git a/chrome/android/java/src/org/chromium/chrome/browser/autofill/AutofillPopupBridge.java b/chrome/android/java/src/org/chromium/chrome/browser/autofill/AutofillPopupBridge.java
index 2aa55b5b41c5f442b52e0b5ad27366d11d6a38f4..856c757647de6d2d1bfd111a46f76585c3f9ba63 100644
--- a/chrome/android/java/src/org/chromium/chrome/browser/autofill/AutofillPopupBridge.java
+++ b/chrome/android/java/src/org/chromium/chrome/browser/autofill/AutofillPopupBridge.java
@@ -81,6 +81,13 @@ public class AutofillPopupBridge implements AutofillDelegate, DialogInterface.On
}
@Override
+ public void accessibilityFocusCleared() {
+ if (mBrowserAccessibilityManager != null) {
+ mBrowserAccessibilityManager.onAutofillPopupAccessibilityFocusCleared();
+ }
+ }
+
+ @Override
public void onClick(DialogInterface dialog, int which) {
assert which == DialogInterface.BUTTON_POSITIVE;
nativeDeletionConfirmed(mNativeAutofillPopup);

Powered by Google App Engine
This is Rietveld 408576698