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
parent c367063823
commit 4727ee0139
Notes: github-actions[bot] 2024-08-19 11:31:15 +00:00

View file

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