Add CefContextMenuParams::GetTitleText method (issue #2030)

This commit is contained in:
Marshall Greenblatt
2017-01-17 12:43:49 -05:00
parent 3f0c94f7e6
commit 5f4190ff75
7 changed files with 54 additions and 0 deletions

View File

@ -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();