diff options
Diffstat (limited to 'chrome/common/render_messages.h')
-rw-r--r-- | chrome/common/render_messages.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/chrome/common/render_messages.h b/chrome/common/render_messages.h index c4038a2..a4e30a4 100644 --- a/chrome/common/render_messages.h +++ b/chrome/common/render_messages.h @@ -1007,6 +1007,7 @@ struct ParamTraits<WebPluginGeometry> { WriteParam(m, p.window); WriteParam(m, p.window_rect); WriteParam(m, p.clip_rect); + WriteParam(m, p.cutout_rects); WriteParam(m, p.visible); } static bool Read(const Message* m, void** iter, param_type* p) { @@ -1014,6 +1015,7 @@ struct ParamTraits<WebPluginGeometry> { ReadParam(m, iter, &p->window) && ReadParam(m, iter, &p->window_rect) && ReadParam(m, iter, &p->clip_rect) && + ReadParam(m, iter, &p->cutout_rects) && ReadParam(m, iter, &p->visible); } static void Log(const param_type& p, std::wstring* l) { @@ -1024,6 +1026,8 @@ struct ParamTraits<WebPluginGeometry> { l->append(L", "); LogParam(p.clip_rect, l); l->append(L", "); + LogParam(p.cutout_rects, l); + l->append(L", "); LogParam(p.visible, l); l->append(L")"); } |