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:
@ -20,7 +20,7 @@ namespace {
|
||||
int CEF_CALLBACK scheme_registrar_add_custom_scheme(
|
||||
struct _cef_scheme_registrar_t* self, const cef_string_t* scheme_name,
|
||||
int is_standard, int is_local, int is_display_isolated, int is_secure,
|
||||
int is_cors_enabled) {
|
||||
int is_cors_enabled, int is_csp_bypassing) {
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@ -38,7 +38,8 @@ int CEF_CALLBACK scheme_registrar_add_custom_scheme(
|
||||
is_local?true:false,
|
||||
is_display_isolated?true:false,
|
||||
is_secure?true:false,
|
||||
is_cors_enabled?true:false);
|
||||
is_cors_enabled?true:false,
|
||||
is_csp_bypassing?true:false);
|
||||
|
||||
// Return type: bool
|
||||
return _retval;
|
||||
|
Reference in New Issue
Block a user