diff options
author | Sam Atkins <atkinssj@serenityos.org> | 2022-08-12 16:52:17 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2022-08-14 11:30:40 +0200 |
commit | 62b561e2e1ab95b8b6852dd91745facb9dd78455 (patch) | |
tree | 2cc7ef20e34089cf3e9b5ad5bca7752d2c8e060e /Userland/Libraries/LibWeb/Forward.h | |
parent | c0494988ed447e1f05da46a733052b1ec10766bf (diff) | |
download | serenity-62b561e2e1ab95b8b6852dd91745facb9dd78455.zip |
LibWeb: Extract CanvasDrawPath class from CRC2D
Again, this is an entirely virtual class since the methods involve
direct access to the Painter. Though, maybe I could just expose the
Painter...
Diffstat (limited to 'Userland/Libraries/LibWeb/Forward.h')
-rw-r--r-- | Userland/Libraries/LibWeb/Forward.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Userland/Libraries/LibWeb/Forward.h b/Userland/Libraries/LibWeb/Forward.h index a3739e5109..fc136593bc 100644 --- a/Userland/Libraries/LibWeb/Forward.h +++ b/Userland/Libraries/LibWeb/Forward.h @@ -648,6 +648,7 @@ class XMLHttpRequestPrototype; class XMLHttpRequestWrapper; class XMLSerializerWrapper; enum class CanPlayTypeResult; +enum class CanvasFillRule; enum class EndingType; enum class DOMParserSupportedType; enum class ResizeObserverBoxOptions; |