mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-02-22 23:55:12 +00:00
LibWebView+WebContent: Add an IPC hook to insert data into the clipboard
This commit is contained in:
committed by
Andreas Kling
parent
4b94b0b561
commit
306850652f
@@ -402,4 +402,10 @@ void WebContentClient::did_change_theme_color(Gfx::Color color)
|
||||
m_view.on_theme_color_change(color);
|
||||
}
|
||||
|
||||
void WebContentClient::did_insert_clipboard_entry(String const& data, String const& presentation_style, String const& mime_type)
|
||||
{
|
||||
if (m_view.on_insert_clipboard_entry)
|
||||
m_view.on_insert_clipboard_entry(data, presentation_style, mime_type);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user