chromium/net/third_party/quiche/overrides/quiche_platform_impl/quiche_test_output_impl.h

// 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.

#ifndef NET_THIRD_PARTY_QUICHE_OVERRIDES_QUICHE_PLATFORM_IMPL_QUICHE_TEST_OUTPUT_IMPL_H_
#define NET_THIRD_PARTY_QUICHE_OVERRIDES_QUICHE_PLATFORM_IMPL_QUICHE_TEST_OUTPUT_IMPL_H_

#include <string_view>

namespace quiche {

void QuicheSaveTestOutputImpl(std::string_view filename, std::string_view data);

bool QuicheLoadTestOutputImpl(std::string_view filename, std::string* data);

void QuicheRecordTraceImpl(std::string_view identifier, std::string_view data);

}  // namespace quiche

#endif  // NET_THIRD_PARTY_QUICHE_OVERRIDES_QUICHE_PLATFORM_IMPL_QUICHE_TEST_OUTPUT_IMPL_H_