// Copyright 2018 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "third_party/googletest/custom/gtest/internal/custom/stack_trace_getter.h" #include <algorithm> #include <iterator> #include "base/containers/adapters.h" #include "base/containers/span.h" #include "base/ranges/algorithm.h" std::string StackTraceGetter::CurrentStackTrace(int max_depth, int skip_count) { … } void StackTraceGetter::UponLeavingGTest() { … }