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

Unified Diff: content/common/accessibility_messages.h

Issue 290633002: Implement Android accessible hit testing using an IPC to the renderer process. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@better_logging_2
Patch Set: Tweak to algorithm to find highest leaf ancestor Created 6 years, 7 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: content/common/accessibility_messages.h
diff --git a/content/common/accessibility_messages.h b/content/common/accessibility_messages.h
index 1830a1b4d172f4486d7b7eee9e039c1863fdaca7..e37035736ff6746cf9158912ebfd8854934e0720 100644
--- a/content/common/accessibility_messages.h
+++ b/content/common/accessibility_messages.h
@@ -105,6 +105,11 @@ IPC_MESSAGE_ROUTED3(AccessibilityMsg_SetTextSelection,
int /* New start offset */,
int /* New end offset */)
+// Determine the accessibility object under a given point and reply with
+// a AccessibilityHostMsg_HitTestResult with the same id.
+IPC_MESSAGE_ROUTED1(AccessibilityMsg_HitTest,
+ gfx::Point /* location to test */);
+
// Tells the render view that a AccessibilityHostMsg_Events
// message was processed and it can send addition events.
IPC_MESSAGE_ROUTED0(AccessibilityMsg_Events_ACK)

Powered by Google App Engine
This is Rietveld 408576698