// Copyright 2017 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "components/crash/core/common/crash_key.h" #include "base/debug/stack_trace.h" #include "base/format_macros.h" #include "base/strings/stringprintf.h" namespace crash_reporter { namespace internal { std::string FormatStackTrace(const base::debug::StackTrace& trace, size_t max_length) { … } } // namespace internal } // namespace crash_reporter