diff options
author | Andrew Kaster <akaster@serenityos.org> | 2022-10-08 20:53:08 -0600 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2022-10-09 10:14:57 +0200 |
commit | 2d5bee256ed35f6396bb99b5f848af0c5a516275 (patch) | |
tree | f834b48bb11bae5be77d2181501ecced58fc2d88 /Userland/Libraries/LibWeb/Forward.h | |
parent | 14e1513077042269dff99f512884c798a54b1219 (diff) | |
download | serenity-2d5bee256ed35f6396bb99b5f848af0c5a516275.zip |
LibWeb: Re-implement HTML::Navigator using IDL
Get rid of the bespoke NavigatorObject class and use the modern IDL
strategies for creating platform objects to re-implement Navigator and
its associcated mixin interfaces. While we're here, implement it in a
way that brings WorkerNavigator up to spec :^)
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 f225fdd09a..aee0245f86 100644 --- a/Userland/Libraries/LibWeb/Forward.h +++ b/Userland/Libraries/LibWeb/Forward.h @@ -304,6 +304,7 @@ class MessageChannel; class MessageEvent; class MessagePort; struct NavigationParams; +class Navigator; class Origin; class PageTransitionEvent; class Path2D; |