chromium/components/crash/core/app/crash_switches.h

// Copyright 2016 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef COMPONENTS_CRASH_CORE_APP_CRASH_SWITCHES_H_
#define COMPONENTS_CRASH_CORE_APP_CRASH_SWITCHES_H_

#include "build/build_config.h"
#include "build/chromeos_buildflags.h"

namespace crash_reporter {
namespace switches {

extern const char kCrashpadHandler[];

#if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS)
extern const char kCrashpadHandlerPid[];
#endif  // BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS)

#if BUILDFLAG(IS_CHROMEOS_ASH)
extern const char kCrashLoopBefore[];
#endif

}  // namespace switches
}  // namespace crash_reporter

#endif  // COMPONENTS_CRASH_CORE_APP_CRASH_SWITCHES_H_