Add CefFrame::PasteAndMatchStyle

This commit is contained in:
Michael Bragg
2024-10-18 14:49:52 -04:00
committed by Marshall Greenblatt
parent fc20e76d3b
commit a787036a8a
12 changed files with 68 additions and 10 deletions

View File

@ -133,6 +133,10 @@ void CefFrameHostImpl::Paste() {
EXEC_WEBCONTENTS_COMMAND(Paste);
}
void CefFrameHostImpl::PasteAndMatchStyle() {
EXEC_WEBCONTENTS_COMMAND(PasteAndMatchStyle);
}
void CefFrameHostImpl::Delete() {
EXEC_WEBCONTENTS_COMMAND(Delete);
}