blob: 6593b73e21d6628d02070c42ff749bebb34e121f [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_DETAILS_MARKER_PAINTER_H_
#define THIRD_PARTY_BLINK_RENDERER_CORE_PAINT_DETAILS_MARKER_PAINTER_H_
#include "third_party/blink/renderer/platform/wtf/allocator/allocator.h"
namespace blink {
class ComputedStyle;
class Path;
class LayoutDetailsMarker;
struct PaintInfo;
struct PhysicalOffset;
class DetailsMarkerPainter {
STACK_ALLOCATED();
public:
DetailsMarkerPainter(const LayoutDetailsMarker& layout_details_marker)
: layout_details_marker_(layout_details_marker) {}
void Paint(const PaintInfo&);
static Path GetCanonicalPath(const ComputedStyle& style, bool is_open);
private:
Path GetPath(const PhysicalOffset& origin) const;
const LayoutDetailsMarker& layout_details_marker_;
};
} // namespace blink
#endif // THIRD_PARTY_BLINK_RENDERER_CORE_PAINT_DETAILS_MARKER_PAINTER_H_