Lines Matching refs:view
22 virtual void Paint(const View& view, gfx::Canvas* canvas) OVERRIDE;
41 void SidedSolidBorder::Paint(const View& view, gfx::Canvas* canvas) {
43 canvas->FillRect(gfx::Rect(0, 0, view.width(), insets_.top()), color_);
45 canvas->FillRect(gfx::Rect(0, 0, insets_.left(), view.height()), color_);
47 canvas->FillRect(gfx::Rect(0, view.height() - insets_.bottom(), view.width(),
50 canvas->FillRect(gfx::Rect(view.width() - insets_.right(), 0, insets_.right(),
51 view.height()), color_);
75 virtual void Paint(const View& view, gfx::Canvas* canvas) OVERRIDE {}
98 virtual void Paint(const View& view, gfx::Canvas* canvas) OVERRIDE {
99 Painter::PaintPainterAt(canvas, painter_.get(), view.GetLocalBounds());