diff options
author | klink@chromium.org <klink@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-06-05 21:56:48 +0000 |
---|---|---|
committer | klink@chromium.org <klink@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-06-05 21:56:48 +0000 |
commit | 27937bdc5b5199c82784c90fb2af4746a7054895 (patch) | |
tree | 9e36ec7cd0bfc2996b87cfa6928bce0d783202c9 /chrome/common/render_messages.h | |
parent | 25b3433897bab5e94dac9ab8a2f09b356792ab7d (diff) | |
download | chromium_src-27937bdc5b5199c82784c90fb2af4746a7054895.zip chromium_src-27937bdc5b5199c82784c90fb2af4746a7054895.tar.gz chromium_src-27937bdc5b5199c82784c90fb2af4746a7054895.tar.bz2 |
Fixes an issue where the MSAA information was not reported back correctly to the AT, upon the HWND containing the web content first receiving focus. Note that this is not a full fix for the bug below, but one more piece to resolving it.BUG=13291TEST=none
Review URL: http://codereview.chromium.org/118206
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@17778 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/render_messages.h')
-rw-r--r-- | chrome/common/render_messages.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/chrome/common/render_messages.h b/chrome/common/render_messages.h index 6ec1566..5719ce9 100644 --- a/chrome/common/render_messages.h +++ b/chrome/common/render_messages.h @@ -520,7 +520,6 @@ struct ParamTraits<webkit_glue::WebAccessibility::InParams> { WriteParam(m, p.object_id); WriteParam(m, p.function_id); WriteParam(m, p.child_id); - WriteParam(m, p.direct_descendant); WriteParam(m, p.input_long1); WriteParam(m, p.input_long2); } @@ -529,7 +528,6 @@ struct ParamTraits<webkit_glue::WebAccessibility::InParams> { ReadParam(m, iter, &p->object_id) && ReadParam(m, iter, &p->function_id) && ReadParam(m, iter, &p->child_id) && - ReadParam(m, iter, &p->direct_descendant) && ReadParam(m, iter, &p->input_long1) && ReadParam(m, iter, &p->input_long2); } @@ -541,8 +539,6 @@ struct ParamTraits<webkit_glue::WebAccessibility::InParams> { l->append(L", "); LogParam(p.child_id, l); l->append(L", "); - LogParam(p.direct_descendant, l); - l->append(L", "); LogParam(p.input_long1, l); l->append(L", "); LogParam(p.input_long2, l); |