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

Unified Diff: trunk/src/content/browser/accessibility/browser_accessibility_manager_android.h

Issue 17045010: Revert 207875 "Native Android accessibility." (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 7 years, 6 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: trunk/src/content/browser/accessibility/browser_accessibility_manager_android.h
===================================================================
--- trunk/src/content/browser/accessibility/browser_accessibility_manager_android.h (revision 207890)
+++ trunk/src/content/browser/accessibility/browser_accessibility_manager_android.h (working copy)
@@ -41,17 +41,10 @@
jint GetRootId(JNIEnv* env, jobject obj);
jint HitTest(JNIEnv* env, jobject obj, jint x, jint y);
- // Populate Java accessibility data structures with info about a node.
- jboolean PopulateAccessibilityNodeInfo(
- JNIEnv* env, jobject obj, jobject info, jint id);
- jboolean PopulateAccessibilityEvent(
- JNIEnv* env, jobject obj, jobject event, jint id, jint event_type);
+ // Gets a temporary pointer to a specific node, only valid in this scope.
+ // May return 0 if that node id is no longer valid.
+ jint GetNativeNodeById(JNIEnv* env, jobject obj, jint id);
- // Perform actions.
- void Click(JNIEnv* env, jobject obj, jint id);
- void Focus(JNIEnv* env, jobject obj, jint id);
- void Blur(JNIEnv* env, jobject obj);
-
protected:
virtual void NotifyRootChanged() OVERRIDE;

Powered by Google App Engine
This is Rietveld 408576698