mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-06 01:26:22 +00:00
LibWebView+WebContent: Add an IPC hook to insert data into the clipboard
This commit is contained in:
parent
4b94b0b561
commit
306850652f
Notes:
sideshowbarker
2024-07-17 18:08:55 +09:00
Author: https://github.com/trflynn89
Commit: 306850652f
Pull-request: https://github.com/SerenityOS/serenity/pull/21878
6 changed files with 15 additions and 0 deletions
|
@ -499,4 +499,9 @@ void PageHost::page_did_change_theme_color(Gfx::Color color)
|
|||
m_client.async_did_change_theme_color(color);
|
||||
}
|
||||
|
||||
void PageHost::page_did_insert_clipboard_entry(String data, String presentation_style, String mime_type)
|
||||
{
|
||||
m_client.async_did_insert_clipboard_entry(move(data), move(presentation_style), move(mime_type));
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue