LibWeb: Rename PaintContext to DisplayListRecordingContext

PaintContext dates back to a time when display lists didn't exist and it
truly represented "paint context". Renaming it to better align with its
current role.
This commit is contained in:
Aliaksandr Kalenik 2025-07-31 23:07:26 +02:00 committed by Alexander Kalenik
parent 1001ff2599
commit 61114f6d16
Notes: github-actions[bot] 2025-08-01 09:27:48 +00:00
65 changed files with 160 additions and 174 deletions

View file

@ -18,7 +18,7 @@ class AudioPaintable final : public MediaPaintable {
public:
static GC::Ref<AudioPaintable> create(Layout::AudioBox const&);
virtual void paint(PaintContext&, PaintPhase) const override;
virtual void paint(DisplayListRecordingContext&, PaintPhase) const override;
Layout::AudioBox& layout_box();
Layout::AudioBox const& layout_box() const;