mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 22:37:35 +00:00
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.
This commit is contained in:
parent
c001e3f2fd
commit
fb1dca2c4b
7 changed files with 34 additions and 28 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue