mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-29 12:19:54 +00:00
LibWeb+UI: Rename ChromeInputData to BrowserInputData
This commit is contained in:
parent
47d6747945
commit
e20d7be15f
Notes:
github-actions[bot]
2025-03-15 23:58:47 +00:00
Author: https://github.com/trflynn89
Commit: e20d7be15f
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/3959
Reviewed-by: https://github.com/awesomekling ✅
5 changed files with 32 additions and 32 deletions
|
@ -203,13 +203,13 @@ void ViewImplementation::enqueue_input_event(Web::InputEvent event)
|
|||
|
||||
m_pending_input_events.tail().visit(
|
||||
[this](Web::KeyEvent const& event) {
|
||||
client().async_key_event(m_client_state.page_index, event.clone_without_chrome_data());
|
||||
client().async_key_event(m_client_state.page_index, event.clone_without_browser_data());
|
||||
},
|
||||
[this](Web::MouseEvent const& event) {
|
||||
client().async_mouse_event(m_client_state.page_index, event.clone_without_chrome_data());
|
||||
client().async_mouse_event(m_client_state.page_index, event.clone_without_browser_data());
|
||||
},
|
||||
[this](Web::DragEvent& event) {
|
||||
auto cloned_event = event.clone_without_chrome_data();
|
||||
auto cloned_event = event.clone_without_browser_data();
|
||||
cloned_event.files = move(event.files);
|
||||
|
||||
client().async_drag_event(m_client_state.page_index, cloned_event);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue