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

Unified Diff: chrome/common/render_messages.h

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
« no previous file with comments | « chrome/browser/renderer_host/render_widget_host_view_win.cc ('k') | webkit/glue/webaccessibility.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/render_messages.h
===================================================================
--- chrome/common/render_messages.h (revision 17645)
+++ chrome/common/render_messages.h (working copy)
@@ -515,7 +515,6 @@
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);
}
@@ -524,7 +523,6 @@
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);
}
@@ -536,8 +534,6 @@
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);
« no previous file with comments | « chrome/browser/renderer_host/render_widget_host_view_win.cc ('k') | webkit/glue/webaccessibility.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698