mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-06-05 21:39:12 +02:00
Add CefContextMenuParams::GetTitleText method (issue #2030)
This commit is contained in:
@ -64,6 +64,11 @@ bool CefContextMenuParamsImpl::HasImageContents() {
|
||||
return const_value().has_image_contents;
|
||||
}
|
||||
|
||||
CefString CefContextMenuParamsImpl::GetTitleText() {
|
||||
CEF_VALUE_VERIFY_RETURN(false, CefString());
|
||||
return const_value().title_text;
|
||||
}
|
||||
|
||||
CefString CefContextMenuParamsImpl::GetPageUrl() {
|
||||
CEF_VALUE_VERIFY_RETURN(false, CefString());
|
||||
return const_value().page_url.spec();
|
||||
|
Reference in New Issue
Block a user