diff options
Diffstat (limited to 'chrome/views/widget/root_view_gtk.cc')
-rw-r--r-- | chrome/views/widget/root_view_gtk.cc | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/chrome/views/widget/root_view_gtk.cc b/chrome/views/widget/root_view_gtk.cc index 115b37d..1c7fe9c 100644 --- a/chrome/views/widget/root_view_gtk.cc +++ b/chrome/views/widget/root_view_gtk.cc @@ -10,22 +10,24 @@ namespace views { +// TODO(port): Port GetScheduledPaintRectConstrainedToSize() to not use RECT. + void RootView::UpdateCursor(const MouseEvent& e) { NOTIMPLEMENTED(); } +// TODO(port): Port OnPaint() to not use HWNDs in its public interface. void RootView::OnPaint(GdkEventExpose* event) { ChromeCanvasPaint canvas(event); + canvas.FillRectInt(SK_ColorRED, 5, 5, 10, 10); + canvas.FillRectInt(SK_ColorGREEN, 25, 5, 10, 10); + canvas.FillRectInt(SK_ColorBLUE, 45, 5, 10, 10); if (!canvas.isEmpty()) { - SchedulePaint(gfx::Rect(canvas.rectangle()), false); - if (NeedsPainting(false)) { + // const PAINTSTRUCT& ps = canvas.paintStruct(); + // SchedulePaint(gfx::Rect(ps.rcPaint), false); + if (NeedsPainting(false)) ProcessPaint(&canvas); - - canvas.FillRectInt(SK_ColorRED, 5, 5, 10, 10); - canvas.FillRectInt(SK_ColorGREEN, 25, 5, 10, 10); - canvas.FillRectInt(SK_ColorBLUE, 45, 5, 10, 10); - } } } |