blob: 36563c5a9c38b6a06ed772486889eb77e4c5bb4a [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_VIEW_PAINTER_H_
#define THIRD_PARTY_BLINK_RENDERER_CORE_PAINT_VIEW_PAINTER_H_
#include "third_party/blink/renderer/platform/wtf/allocator.h"
namespace blink {
struct PaintInfo;
class DisplayItemClient;
class IntRect;
class LayoutView;
class ViewPainter {
STACK_ALLOCATED();
public:
ViewPainter(const LayoutView& layout_view) : layout_view_(layout_view) {}
void Paint(const PaintInfo&);
void PaintBoxDecorationBackground(const PaintInfo&);
private:
const LayoutView& layout_view_;
void PaintBoxDecorationBackgroundInternal(
const PaintInfo&,
const IntRect& background_rect,
const DisplayItemClient& background_client);
};
} // namespace blink
#endif // THIRD_PARTY_BLINK_RENDERER_CORE_PAINT_VIEW_PAINTER_H_