mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-06-05 21:39:12 +02:00
Update to Chromium version 86.0.4240.0 (#800218)
- 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).
This commit is contained in:
@ -1,8 +1,8 @@
|
||||
diff --git services/service_manager/sandbox/win/sandbox_win.cc services/service_manager/sandbox/win/sandbox_win.cc
|
||||
index cde75bd07101..34f6853596d5 100644
|
||||
--- services/service_manager/sandbox/win/sandbox_win.cc
|
||||
+++ services/service_manager/sandbox/win/sandbox_win.cc
|
||||
@@ -959,8 +959,11 @@ sandbox::ResultCode SandboxWin::StartSandboxedProcess(
|
||||
diff --git sandbox/policy/win/sandbox_win.cc sandbox/policy/win/sandbox_win.cc
|
||||
index d63d942c7e3e..a100fb4d685f 100644
|
||||
--- sandbox/policy/win/sandbox_win.cc
|
||||
+++ sandbox/policy/win/sandbox_win.cc
|
||||
@@ -953,8 +953,11 @@ ResultCode SandboxWin::StartSandboxedProcess(
|
||||
}
|
||||
// TODO(wfh): Relax strict handle checks for network process until root cause
|
||||
// for this crash can be resolved. See https://crbug.com/939590.
|
||||
@ -10,8 +10,8 @@ index cde75bd07101..34f6853596d5 100644
|
||||
+ if (!launcher_process_command_line.HasSwitch("win-rt-app") &&
|
||||
+ sandbox_type != SandboxType::kNetwork) {
|
||||
+ // Don't enable this mitigation in WinRT apps. See issue #2274.
|
||||
mitigations |= sandbox::MITIGATION_STRICT_HANDLE_CHECKS;
|
||||
mitigations |= MITIGATION_STRICT_HANDLE_CHECKS;
|
||||
+ }
|
||||
|
||||
result = policy->SetDelayedProcessMitigations(mitigations);
|
||||
if (result != sandbox::SBOX_ALL_OK)
|
||||
if (result != SBOX_ALL_OK)
|
||||
|
Reference in New Issue
Block a user