diff options
author | Linus Groh <mail@linusgroh.de> | 2022-02-18 17:35:45 +0000 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2022-02-18 19:34:08 +0000 |
commit | fb1dca2c4bcb75efec0bb40246d6fd2ccc814dd8 (patch) | |
tree | 8e0149d0ef2fad3947a91126596afead978ad52e /Userland/Libraries/LibWeb/Forward.h | |
parent | c001e3f2fd2a9d2003c289ba77aa1d15bc54ecdb (diff) | |
download | serenity-fb1dca2c4bcb75efec0bb40246d6fd2ccc814dd8.zip |
LibWeb: Move WebSocket into the Web::WebSockets namespace
WebSockets got moved from the HTML standard to their own, the new
WebSockets Standard (https://websockets.spec.whatwg.org).
Move the IDL file and implementation into a new WebSockets directory and
C++ namespace accordingly.
Diffstat (limited to 'Userland/Libraries/LibWeb/Forward.h')
-rw-r--r-- | Userland/Libraries/LibWeb/Forward.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Userland/Libraries/LibWeb/Forward.h b/Userland/Libraries/LibWeb/Forward.h index 8bbd0754fe..ec1567986d 100644 --- a/Userland/Libraries/LibWeb/Forward.h +++ b/Userland/Libraries/LibWeb/Forward.h @@ -219,7 +219,6 @@ class WorkerDebugConsoleClient; class Storage; class SubmitEvent; class TextMetrics; -class WebSocket; class WindowEnvironmentSettingsObject; class Worker; class WorkerEnvironmentSettingsObject; @@ -270,6 +269,10 @@ namespace Web::Selection { class Selection; } +namespace Web::WebSockets { +class WebSocket; +} + namespace Web::Layout { enum class LayoutMode; enum class PaintPhase; |