Browse Source

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.
Andrew Kaster 11 months ago
parent
commit
e45b7b0a86
1 changed files with 1 additions and 0 deletions
  1. 1 0
      Userland/Libraries/LibWeb/SVG/SVGDecodedImageData.h

+ 1 - 0
Userland/Libraries/LibWeb/SVG/SVGDecodedImageData.h

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