diff options
author | Linus Groh <mail@linusgroh.de> | 2021-12-12 18:03:22 +0000 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-12-12 20:58:36 +0100 |
commit | 35d3a1e77b3f628da225ca4ec5d0ba050082624a (patch) | |
tree | 3410618e2a8a654f45564b575b717df5056923ba /Userland/Libraries/LibWeb/Forward.h | |
parent | 0306cf203062355c646fff1248108d839346e018 (diff) | |
download | serenity-35d3a1e77b3f628da225ca4ec5d0ba050082624a.zip |
LibWeb: Add the TextEncoder interface
This is from the Encoding Standard (https://encoding.spec.whatwg.org),
and therefore gets its own namespace and subdirectory within LibWeb :^)
Diffstat (limited to 'Userland/Libraries/LibWeb/Forward.h')
-rw-r--r-- | Userland/Libraries/LibWeb/Forward.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Userland/Libraries/LibWeb/Forward.h b/Userland/Libraries/LibWeb/Forward.h index 7205762ba7..618a7cf1f8 100644 --- a/Userland/Libraries/LibWeb/Forward.h +++ b/Userland/Libraries/LibWeb/Forward.h @@ -109,6 +109,10 @@ template<typename ValueType> class ExceptionOr; } +namespace Web::Encoding { +class TextEncoder; +} + namespace Web::Geometry { class DOMRect; class DOMRectReadOnly; @@ -432,6 +436,7 @@ class SVGGeometryElementWrapper; class SVGGraphicsElementWrapper; class SVGPathElementWrapper; class SVGSVGElementWrapper; +class TextEncoderWrapper; class TextWrapper; class UIEventWrapper; class URLConstructor; |