mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-03-13 02:20:22 +01:00
- CefURLRequest::Create is no longer supported in the renderer process (see https://crbug.com/891872). Use CefFrame::CreateURLRequest instead. - Mac platform definitions have been changed from `MACOSX` to `MAC` (see https://crbug.com/1105907) and related CMake macro names have been updated. The old `OS_MACOSX` define is still set in code and CMake for backwards compatibility. - Linux ARM build is currently broken (see https://crbug.com/1123214).
22 lines
1009 B
Diff
22 lines
1009 B
Diff
diff --git content/browser/child_process_security_policy_impl.cc content/browser/child_process_security_policy_impl.cc
|
|
index 9cd1ff2b9222..2f5264de68c4 100644
|
|
--- content/browser/child_process_security_policy_impl.cc
|
|
+++ content/browser/child_process_security_policy_impl.cc
|
|
@@ -1548,6 +1548,16 @@ bool ChildProcessSecurityPolicyImpl::CanAccessDataForOrigin(
|
|
// DeclarativeApiTest.PersistRules.
|
|
if (actual_process_lock.matches_scheme(url::kDataScheme))
|
|
return true;
|
|
+
|
|
+ // Allow other schemes that are non-standard, non-local and WebSafe.
|
|
+ if (lock_url.is_valid() &&
|
|
+ !lock_url.IsStandard() &&
|
|
+ !base::Contains(url::GetLocalSchemes(),
|
|
+ lock_url.scheme_piece()) &&
|
|
+ base::Contains(schemes_okay_to_request_in_any_process_,
|
|
+ lock_url.scheme_piece())) {
|
|
+ return true;
|
|
+ }
|
|
}
|
|
|
|
// TODO(wjmaclean): We should update the ProcessLock comparison API to
|