Update to Chromium revision 939b32ee (#454471)

This commit is contained in:
Marshall Greenblatt
2017-03-03 17:37:23 -05:00
parent fe68aee82c
commit 54647945f1
127 changed files with 1874 additions and 964 deletions

View File

@@ -17,7 +17,7 @@
bool CefSchemeRegistrarCToCpp::AddCustomScheme(const CefString& scheme_name,
bool is_standard, bool is_local, bool is_display_isolated, bool is_secure,
bool is_cors_enabled) {
bool is_cors_enabled, bool is_csp_bypassing) {
cef_scheme_registrar_t* _struct = GetStruct();
if (CEF_MEMBER_MISSING(_struct, add_custom_scheme))
return false;
@@ -36,7 +36,8 @@ bool CefSchemeRegistrarCToCpp::AddCustomScheme(const CefString& scheme_name,
is_local,
is_display_isolated,
is_secure,
is_cors_enabled);
is_cors_enabled,
is_csp_bypassing);
// Return type: bool
return _retval?true:false;

View File

@@ -33,7 +33,7 @@ class CefSchemeRegistrarCToCpp
// CefSchemeRegistrar methods.
bool AddCustomScheme(const CefString& scheme_name, bool is_standard,
bool is_local, bool is_display_isolated, bool is_secure,
bool is_cors_enabled) OVERRIDE;
bool is_cors_enabled, bool is_csp_bypassing) OVERRIDE;
};
#endif // CEF_LIBCEF_DLL_CTOCPP_SCHEME_REGISTRAR_CTOCPP_H_