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

Unified Diff: android_webview/java/src/org/chromium/android_webview/AwContents.java

Issue 1246823003: Provide an accessibility tree snapshot (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: address code review Created 5 years, 5 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: android_webview/java/src/org/chromium/android_webview/AwContents.java
diff --git a/android_webview/java/src/org/chromium/android_webview/AwContents.java b/android_webview/java/src/org/chromium/android_webview/AwContents.java
index 76a9cc8ce54d67b7541cfb96b3e60ef6427c4c53..63080a6479ed9cd23526ec38be2b905a9af4270f 100644
--- a/android_webview/java/src/org/chromium/android_webview/AwContents.java
+++ b/android_webview/java/src/org/chromium/android_webview/AwContents.java
@@ -2118,7 +2118,7 @@ public class AwContents implements SmartClipProvider,
callback.onAccessibilitySnapshot(null);
return;
}
- mWebContents.requestAccessibilitySnapshot(callback);
+ mWebContents.requestAccessibilitySnapshot(callback, 0, 0);
Ted C 2015/07/21 21:21:03 are these values correct?
sgurun-gerrit only 2015/07/21 21:33:49 yes, seem so.
}
//--------------------------------------------------------------------------------------------

Powered by Google App Engine
This is Rietveld 408576698