// Copyright 2014 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/test/scoped_disable_exit_on_dfatal.h" #include <string_view> #include "base/functional/bind.h" #include "base/functional/callback.h" namespace net::test { ScopedDisableExitOnDFatal::ScopedDisableExitOnDFatal() : … { … } ScopedDisableExitOnDFatal::~ScopedDisableExitOnDFatal() = default; // static void ScopedDisableExitOnDFatal::LogAssertHandler( const char* file, int line, const std::string_view message, const std::string_view stack_trace) { … } } // namespace net::test