mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-01-20 21:44:06 +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).
38 lines
1.1 KiB
C++
38 lines
1.1 KiB
C++
// Copyright 2016 The Chromium Embedded Framework Authors. Portions copyright
|
|
// 2016 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.
|
|
|
|
#include <string>
|
|
|
|
#include "base/strings/string_piece_forward.h"
|
|
#include "build/build_config.h"
|
|
|
|
namespace base {
|
|
class CommandLine;
|
|
}
|
|
|
|
namespace crash_reporting {
|
|
|
|
// Returns true if crash reporting is enabled.
|
|
bool Enabled();
|
|
|
|
// Set or clear a crash key value.
|
|
bool SetCrashKeyValue(const base::StringPiece& key,
|
|
const base::StringPiece& value);
|
|
|
|
// Functions are called from similarly named methods in AlloyMainDelegate.
|
|
|
|
#if defined(OS_POSIX)
|
|
void BasicStartupComplete(base::CommandLine* command_line);
|
|
#endif
|
|
|
|
void PreSandboxStartup(const base::CommandLine& command_line,
|
|
const std::string& process_type);
|
|
|
|
#if defined(OS_POSIX) && !defined(OS_ANDROID) && !defined(OS_MAC)
|
|
void ZygoteForked(base::CommandLine* command_line,
|
|
const std::string& process_type);
|
|
#endif
|
|
|
|
} // namespace crash_reporting
|