mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-06-05 21:39:12 +02:00
Update to Chromium revision 939b32ee (#454471)
This commit is contained in:
@@ -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;
|
||||
|
@@ -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_
|
||||
|
Reference in New Issue
Block a user