blob: e5962c336282c53794a990e73cf1bbdf9af8a8ea [file] [log] [blame]
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef THIRD_PARTY_BLINK_RENDERER_CORE_PAINT_SCROLLBAR_PAINTER_H_
#define THIRD_PARTY_BLINK_RENDERER_CORE_PAINT_SCROLLBAR_PAINTER_H_
#include "base/macros.h"
#include "third_party/blink/renderer/core/scroll/scrollbar.h"
#include "third_party/blink/renderer/platform/heap/handle.h"
namespace blink {
class GraphicsContext;
class IntRect;
class LayoutPoint;
class LayoutRect;
class LayoutScrollbar;
class LayoutScrollbarPart;
class ScrollbarPainter {
STACK_ALLOCATED();
public:
explicit ScrollbarPainter(const LayoutScrollbar& layout_scrollbar)
: layout_scrollbar_(&layout_scrollbar) {}
void PaintPart(GraphicsContext&, ScrollbarPart, const IntRect&);
static void PaintIntoRect(const LayoutScrollbarPart&,
GraphicsContext&,
const LayoutPoint& paint_offset,
const LayoutRect&,
const LayoutScrollbar* = nullptr);
private:
Member<const LayoutScrollbar> layout_scrollbar_;
DISALLOW_COPY_AND_ASSIGN(ScrollbarPainter);
};
} // namespace blink
#endif // THIRD_PARTY_BLINK_RENDERER_CORE_PAINT_SCROLLBAR_PAINTER_H_