// Copyright 2024 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "net/third_party/quiche/overrides/quiche_platform_impl/quiche_stack_trace_impl.h" #include "base/containers/to_vector.h" namespace quiche { namespace { static constexpr size_t kMaxStackSize = …; } // namespace std::vector<void*> CurrentStackTraceImpl() { … } std::string SymbolizeStackTraceImpl(base::span<const void* const> stacktrace) { … } std::string QuicheStackTraceImpl() { … } bool QuicheShouldRunStackTraceTestImpl() { … } } // namespace quiche