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

Unified Diff: chrome/browser/browser_accessibility_manager.cc

Issue 118206: Fixes an issue where the MSAA information was not reported back correctly to ... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 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: chrome/browser/browser_accessibility_manager.cc
===================================================================
--- chrome/browser/browser_accessibility_manager.cc (revision 17645)
+++ chrome/browser/browser_accessibility_manager.cc (working copy)
@@ -77,7 +77,6 @@
in_params.object_id = in->object_id;
in_params.function_id = in->function_id;
in_params.child_id = in->child_id;
- in_params.direct_descendant = in->direct_descendant;
in_params.input_long1 = in->input_long1;
in_params.input_long2 = in->input_long2;
@@ -103,10 +102,6 @@
BrowserAccessibility* browser_acc =
GetBrowserAccessibility(process_id, routing_id);
if (browser_acc) {
- // Indicate that the request for child information is referring to a non-
- // direct descendant of the root.
- browser_acc->set_direct_descendant(false);
-
// Notify Access Technology that there was a change in keyboard focus.
::NotifyWinEvent(EVENT_OBJECT_FOCUS, browser_acc->parent_hwnd(),
OBJID_CLIENT, static_cast<LONG>(acc_obj_id));
« no previous file with comments | « chrome/browser/browser_accessibility.cc ('k') | chrome/browser/renderer_host/render_widget_host_view_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698