blob: 6031500e83b40a51381fff375929830f851611fb [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_OBJECT_PAINTER_BASE_H_
#define THIRD_PARTY_BLINK_RENDERER_CORE_PAINT_OBJECT_PAINTER_BASE_H_
#include "third_party/blink/renderer/core/style/computed_style_constants.h"
#include "third_party/blink/renderer/platform/geometry/layout_rect.h"
#include "third_party/blink/renderer/platform/wtf/allocator.h"
#include "third_party/blink/renderer/platform/wtf/vector.h"
namespace blink {
class ComputedStyle;
class Color;
class GraphicsContext;
struct PaintInfo;
// Base class for object painting. Has no dependencies on the layout tree and
// thus provides functionality and definitions that can be shared between both
// legacy layout and LayoutNG.
class ObjectPainterBase {
STACK_ALLOCATED();
public:
static void DrawLineForBoxSide(GraphicsContext&,
float x1,
float y1,
float x2,
float y2,
BoxSide,
Color,
EBorderStyle,
int adjbw1,
int adjbw2,
bool antialias = false);
protected:
ObjectPainterBase() = default;
void PaintOutlineRects(const PaintInfo&,
const Vector<LayoutRect>&,
const ComputedStyle&);
};
} // namespace blink
#endif // THIRD_PARTY_BLINK_RENDERER_CORE_PAINT_OBJECT_PAINTER_BASE_H_