summaryrefslogtreecommitdiff
path: root/core/java/android/view/ViewRootImpl.java
diff options
context:
space:
mode:
authorSvetoslav <svetoslavganov@google.com>2015-02-10 03:01:50 +0000
committerAndroid Git Automerger <android-git-automerger@android.com>2015-02-10 03:01:50 +0000
commitcf2c8545bd6a8888801fa8c04d263879602eeb36 (patch)
treeb2636467c13f3712f1ad8af83b481035eb498c5d /core/java/android/view/ViewRootImpl.java
parent2083173af997419fbc2e92627fe5500f91ac7e5b (diff)
parent5521f39ff75d2af909061581e27810afaa9ed242 (diff)
am 5521f39f: am c73cfa0f: Accessibiltiy: missed update to the previous patch.
* commit '5521f39ff75d2af909061581e27810afaa9ed242': Accessibiltiy: missed update to the previous patch.
Diffstat (limited to 'core/java/android/view/ViewRootImpl.java')
-rw-r--r--core/java/android/view/ViewRootImpl.java7
1 files changed, 0 insertions, 7 deletions
diff --git a/core/java/android/view/ViewRootImpl.java b/core/java/android/view/ViewRootImpl.java
index 15d47ba77973..e4d82b16d185 100644
--- a/core/java/android/view/ViewRootImpl.java
+++ b/core/java/android/view/ViewRootImpl.java
@@ -4121,13 +4121,6 @@ public final class ViewRootImpl implements ViewParent,
mAttachInfo.mUnbufferedDispatchRequested = false;
boolean handled = mView.dispatchPointerEvent(event);
- if (!handled && event.isTargetAccessibilityFocus()) {
- // The event was targeting accessibility focused view and is not handled,
- // it is very rare but possible that a predecessor of the focused view handles
- // the event but didn't due to special dispatch, perform normal event dispatch.
- event.setTargetAccessibilityFocus(false);
- handled = mView.dispatchPointerEvent(event);
- }
if (mAttachInfo.mUnbufferedDispatchRequested && !mUnbufferedInputDispatch) {
mUnbufferedInputDispatch = true;
if (mConsumeBatchedInputScheduled) {