Linux: Migrate from breakpad to crashpad (see issue #3249)

Renderer process crashes are currently only reported with `--no-sandbox`.
This commit is contained in:
Marshall Greenblatt
2022-03-15 15:42:15 -04:00
parent 8fc6aced6c
commit c38d62b233
12 changed files with 187 additions and 272 deletions

View File

@ -0,0 +1,16 @@
// Copyright 2022 The Chromium Embedded Framework Authors. Portions copyright
// 2011 The Chromium Authors. All rights reserved. Use of this source code is
// governed by a BSD-style license that can be found in the LICENSE file.
#ifndef CEF_LIBCEF_COMMON_UTIL_LINUX_H_
#define CEF_LIBCEF_COMMON_UTIL_LINUX_H_
#pragma once
namespace util_linux {
// Called from MainDelegate::PreSandboxStartup for the main process.
void PreSandboxStartup();
} // namespace util_linux
#endif // CEF_LIBCEF_COMMON_UTIL_LINUX_H_