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

Unified Diff: chrome/browser/renderer_host/render_widget_host_view_win.cc

Issue 3117036: Update browser cache of accessibility tree on renderer sub-tree changes.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Updating from comments. Created 10 years, 4 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
« no previous file with comments | « chrome/browser/renderer_host/render_widget_host_view_win.h ('k') | chrome/common/notification_type.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/renderer_host/render_widget_host_view_win.cc
===================================================================
--- chrome/browser/renderer_host/render_widget_host_view_win.cc (revision 57122)
+++ chrome/browser/renderer_host/render_widget_host_view_win.cc (working copy)
@@ -1511,6 +1511,14 @@
}
}
+void RenderWidgetHostViewWin::OnAccessibilityObjectChildrenChange(
+ const std::vector<webkit_glue::WebAccessibility>& acc_changes) {
+ if (browser_accessibility_manager_.get()) {
+ browser_accessibility_manager_->OnAccessibilityObjectChildrenChange(
+ acc_changes);
+ }
+}
+
void RenderWidgetHostViewWin::Observe(NotificationType type,
const NotificationSource& source,
const NotificationDetails& details) {
@@ -1553,6 +1561,10 @@
render_widget_host_->AccessibilityDoDefaultAction(acc_obj_id);
}
+void RenderWidgetHostViewWin::AccessibilityObjectChildrenChangeAck() {
+ render_widget_host_->AccessibilityObjectChildrenChangeAck();
+}
+
LRESULT RenderWidgetHostViewWin::OnGetObject(UINT message, WPARAM wparam,
LPARAM lparam, BOOL& handled) {
if (lparam != OBJID_CLIENT) {
« no previous file with comments | « chrome/browser/renderer_host/render_widget_host_view_win.h ('k') | chrome/common/notification_type.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698