chromium/chrome/updater/crash_client.h

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

#ifndef CHROME_UPDATER_CRASH_CLIENT_H_
#define CHROME_UPDATER_CRASH_CLIENT_H_

#include <memory>
#include <string>

#include "base/no_destructor.h"
#include "base/sequence_checker.h"

namespace crashpad {
class CrashReportDatabase;
}  // namespace crashpad

namespace updater {

enum class UpdaterScope;

// This class manages interaction with the crash reporter.
class CrashClient {};

}  // namespace updater

#endif  // CHROME_UPDATER_CRASH_CLIENT_H_