#include <string>
#include "base/strings/string_piece_forward.h"
#include "build/build_config.h"
namespace base {
class CommandLine;
}
namespace crash_reporting {
bool Enabled();
bool SetCrashKeyValue(const base::StringPiece& key,
const base::StringPiece& value);
#if BUILDFLAG(IS_POSIX)
void BasicStartupComplete(base::CommandLine* command_line);
#endif
void PreSandboxStartup(const base::CommandLine& command_line,
const std::string& process_type);
#if BUILDFLAG(IS_POSIX) && !BUILDFLAG(IS_ANDROID) && !BUILDFLAG(IS_MAC)
void ZygoteForked(base::CommandLine* command_line,
const std::string& process_type);
#endif
}