LibWeb: Add missing Page.h include to SVGDecodedImageData

The PageClient for SVGDecodedImageData needs to actually have the
definition of PageClient available in order to inherit from it. This
fixes importing this header from Objective-C or Swift.
This commit is contained in:
Andrew Kaster 2024-08-06 21:56:24 -06:00 committed by Andreas Kling
parent 35f4b8bb5c
commit e45b7b0a86
Notes: github-actions[bot] 2024-08-19 10:58:07 +00:00

View file

@ -8,6 +8,7 @@
#include <LibWeb/DOM/Document.h>
#include <LibWeb/HTML/DecodedImageData.h>
#include <LibWeb/Page/Page.h>
namespace Web::SVG {