// Copyright 2021 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "remoting/host/crash_process.h" #include "base/check.h" #include "base/debug/alias.h" #include "base/location.h" #include "base/logging.h" #include "base/strings/string_util.h" namespace remoting { void CrashProcess(const base::Location& location) { … } void CrashProcess(const std::string& function_name, const std::string& file_name, int line_number) { … } } // namespace remoting