mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-01-22 07:27:55 +01:00
24c2f2fa38
- 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).
18 lines
797 B
Diff
18 lines
797 B
Diff
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.
|
|
- if (sandbox_type != SandboxType::kNetwork)
|
|
+ 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 |= MITIGATION_STRICT_HANDLE_CHECKS;
|
|
+ }
|
|
|
|
result = policy->SetDelayedProcessMitigations(mitigations);
|
|
if (result != SBOX_ALL_OK)
|