Index: chrome/common/render_messages.cc |
=================================================================== |
--- chrome/common/render_messages.cc (revision 57849) |
+++ chrome/common/render_messages.cc (working copy) |
@@ -793,6 +793,7 @@ |
WriteParam(m, p.location); |
WriteParam(m, p.attributes); |
WriteParam(m, p.children); |
+ WriteParam(m, p.html_attributes); |
} |
bool ParamTraits<webkit_glue::WebAccessibility>::Read( |
@@ -814,6 +815,7 @@ |
ret = ret && ReadParam(m, iter, &p->location); |
ret = ret && ReadParam(m, iter, &p->attributes); |
ret = ret && ReadParam(m, iter, &p->children); |
+ ret = ret && ReadParam(m, iter, &p->html_attributes); |
return ret; |
} |
@@ -835,6 +837,8 @@ |
LogParam(p.attributes, l); |
l->append(", "); |
LogParam(p.children, l); |
+ l->append(", "); |
+ LogParam(p.html_attributes, l); |
l->append(")"); |
} |