- Add CefPostData::HasExcludedElements which returns true if the underlying

POST data includes elements that are not represented (issue #1761).
- Add CefRequest::SetReferrer and CefRequest::GetReferrer[URL|Policy]. The
  Referer value will no longer be stored in the header map.
- Move request-related conversion logic to CefRequestImpl and standardize the
  implementation.
This commit is contained in:
Marshall Greenblatt
2015-12-01 13:22:28 -05:00
parent 2a658c414b
commit 9bc8da1e02
18 changed files with 793 additions and 348 deletions

View File

@@ -44,6 +44,20 @@ bool CefPostDataCToCpp::IsReadOnly() {
return _retval?true:false;
}
bool CefPostDataCToCpp::HasExcludedElements() {
cef_post_data_t* _struct = GetStruct();
if (CEF_MEMBER_MISSING(_struct, has_excluded_elements))
return false;
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
// Execute
int _retval = _struct->has_excluded_elements(_struct);
// Return type: bool
return _retval?true:false;
}
size_t CefPostDataCToCpp::GetElementCount() {
cef_post_data_t* _struct = GetStruct();
if (CEF_MEMBER_MISSING(_struct, get_element_count))