mirror of
https://github.com/RGBCube/serenity
synced 2025-05-16 02:14:57 +00:00
26 lines
590 B
C++
26 lines
590 B
C++
/*
|
|
* Copyright (c) 2022, Andreas Kling <kling@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <LibWeb/Layout/FrameBox.h>
|
|
#include <LibWeb/Painting/PaintableBox.h>
|
|
|
|
namespace Web::Painting {
|
|
|
|
class NestedBrowsingContextPaintable final : public PaintableBox {
|
|
public:
|
|
static NonnullRefPtr<NestedBrowsingContextPaintable> create(Layout::FrameBox const&);
|
|
|
|
virtual void paint(PaintContext&, PaintPhase) const override;
|
|
|
|
Layout::FrameBox const& layout_box() const;
|
|
|
|
private:
|
|
NestedBrowsingContextPaintable(Layout::FrameBox const&);
|
|
};
|
|
|
|
}
|