summaryrefslogtreecommitdiffstats
path: root/core/java/android/view/ViewRootImpl.java
diff options
context:
space:
mode:
authorSvetoslav Ganov <svetoslavganov@google.com>2013-01-29 03:16:40 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2013-01-29 03:16:40 +0000
commitd0fd54648ca6249f56cf469c57181b5a7bbb71d0 (patch)
tree4c710f5a98e913d87290a312b89a46370847ed60 /core/java/android/view/ViewRootImpl.java
parent5924dc4d7a42d04011d2e67aa3f9e28b7d940681 (diff)
parent80943d8daa6ab31ab5c486d57aea406aa0730d58 (diff)
downloadframeworks_base-d0fd54648ca6249f56cf469c57181b5a7bbb71d0.zip
frameworks_base-d0fd54648ca6249f56cf469c57181b5a7bbb71d0.tar.gz
frameworks_base-d0fd54648ca6249f56cf469c57181b5a7bbb71d0.tar.bz2
Merge "Adding UI test automation APIs."
Diffstat (limited to 'core/java/android/view/ViewRootImpl.java')
-rw-r--r--core/java/android/view/ViewRootImpl.java11
1 files changed, 6 insertions, 5 deletions
diff --git a/core/java/android/view/ViewRootImpl.java b/core/java/android/view/ViewRootImpl.java
index 9f075c4..ba9eb89 100644
--- a/core/java/android/view/ViewRootImpl.java
+++ b/core/java/android/view/ViewRootImpl.java
@@ -5482,15 +5482,16 @@ public final class ViewRootImpl implements ViewParent,
}
@Override
- public void findAccessibilityNodeInfoByViewId(long accessibilityNodeId, int viewId,
- int interactionId, IAccessibilityInteractionConnectionCallback callback, int flags,
+ public void findAccessibilityNodeInfosByViewId(long accessibilityNodeId,
+ String viewId, int interactionId,
+ IAccessibilityInteractionConnectionCallback callback, int flags,
int interrogatingPid, long interrogatingTid, MagnificationSpec spec) {
ViewRootImpl viewRootImpl = mViewRootImpl.get();
if (viewRootImpl != null && viewRootImpl.mView != null) {
viewRootImpl.getAccessibilityInteractionController()
- .findAccessibilityNodeInfoByViewIdClientThread(accessibilityNodeId, viewId,
- interactionId, callback, flags, interrogatingPid, interrogatingTid,
- spec);
+ .findAccessibilityNodeInfosByViewIdClientThread(accessibilityNodeId,
+ viewId, interactionId, callback, flags, interrogatingPid,
+ interrogatingTid, spec);
} else {
// We cannot make the call and notify the caller so it does not wait.
try {