Index: chrome/common/render_messages.cc |
=================================================================== |
--- chrome/common/render_messages.cc (revision 57192) |
+++ chrome/common/render_messages.cc (working copy) |
@@ -794,7 +794,6 @@ |
WriteParam(m, p.location); |
WriteParam(m, p.attributes); |
WriteParam(m, p.children); |
- WriteParam(m, p.html_attributes); |
} |
bool ParamTraits<webkit_glue::WebAccessibility>::Read( |
@@ -816,7 +815,6 @@ |
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; |
} |
@@ -838,8 +836,6 @@ |
LogParam(p.attributes, l); |
l->append(", "); |
LogParam(p.children, l); |
- l->append(", "); |
- LogParam(p.html_attributes, l); |
l->append(")"); |
} |