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

Unified Diff: content/browser/frame_host/render_frame_host_impl.cc

Issue 2748463003: Generalize the HIT_TEST accessibility action so that it can send any event. (Closed)
Patch Set: Created 3 years, 9 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/browser/frame_host/render_frame_host_impl.cc
diff --git a/content/browser/frame_host/render_frame_host_impl.cc b/content/browser/frame_host/render_frame_host_impl.cc
index b6086a04aecf9b994912f9ece06ffcad50fa5b49..0477da0baf6bcce64eb13bd93fc626872af30d40 100644
--- a/content/browser/frame_host/render_frame_host_impl.cc
+++ b/content/browser/frame_host/render_frame_host_impl.cc
@@ -2085,10 +2085,11 @@ void RenderFrameHostImpl::OnAccessibilityFindInPageResult(
void RenderFrameHostImpl::OnAccessibilityChildFrameHitTestResult(
const gfx::Point& point,
- int hit_obj_id) {
+ int hit_obj_id,
+ ui::AXEvent event_to_fire) {
if (browser_accessibility_manager_) {
- browser_accessibility_manager_->OnChildFrameHitTestResult(point,
- hit_obj_id);
+ browser_accessibility_manager_->OnChildFrameHitTestResult(point, hit_obj_id,
+ event_to_fire);
}
}

Powered by Google App Engine
This is Rietveld 408576698