| Index: chrome/common/render_messages.h
|
| ===================================================================
|
| --- chrome/common/render_messages.h (revision 34187)
|
| +++ chrome/common/render_messages.h (working copy)
|
| @@ -1559,6 +1559,9 @@
|
| WriteParam(m, static_cast<int>(p.hinting));
|
| WriteParam(m, static_cast<int>(p.subpixel_rendering));
|
| WriteParam(m, p.focus_ring_color);
|
| + WriteParam(m, p.thumb_active_color);
|
| + WriteParam(m, p.thumb_inactive_color);
|
| + WriteParam(m, p.track_color);
|
| WriteParam(m, p.browser_handles_top_level_requests);
|
| }
|
| static bool Read(const Message* m, void** iter, param_type* p) {
|
| @@ -1584,6 +1587,15 @@
|
| return false;
|
| p->focus_ring_color = focus_ring_color;
|
|
|
| + int thumb_active_color, thumb_inactive_color, track_color;
|
| + if (!ReadParam(m, iter, &thumb_active_color) ||
|
| + !ReadParam(m, iter, &thumb_inactive_color) ||
|
| + !ReadParam(m, iter, &track_color))
|
| + return false;
|
| + p->thumb_active_color = thumb_active_color;
|
| + p->thumb_inactive_color = thumb_inactive_color;
|
| + p->track_color = track_color;
|
| +
|
| if (!ReadParam(m, iter, &p->browser_handles_top_level_requests))
|
| return false;
|
|
|
|
|