LibWeb: Remove needless public specifiers from event structs

This commit is contained in:
Timothy Flynn 2024-08-15 09:55:01 -04:00 committed by Andreas Kling
commit 4727ee0139
Notes: github-actions[bot] 2024-08-19 11:31:15 +00:00

View file

@ -21,7 +21,6 @@ struct ChromeInputData {
}; };
struct KeyEvent { struct KeyEvent {
public:
enum class Type { enum class Type {
KeyDown, KeyDown,
KeyUp, KeyUp,
@ -38,7 +37,6 @@ public:
}; };
struct MouseEvent { struct MouseEvent {
public:
enum class Type { enum class Type {
MouseDown, MouseDown,
MouseUp, MouseUp,