1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 14:37:45 +00:00

LibWebView+WebContent: Add an IPC hook to insert data into the clipboard

This commit is contained in:
Timothy Flynn 2023-11-10 13:35:41 -05:00 committed by Andreas Kling
parent 4b94b0b561
commit 306850652f
6 changed files with 15 additions and 0 deletions

View file

@ -120,6 +120,7 @@ private:
virtual void page_did_request_color_picker(Color current_color) override;
virtual void page_did_finish_text_test() override;
virtual void page_did_change_theme_color(Gfx::Color color) override;
virtual void page_did_insert_clipboard_entry(String data, String presentation_style, String mime_type) override;
explicit PageHost(ConnectionFromClient&);