// Copyright 2021 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_QUIC_PLATFORM_IMPL_QUIC_TEST_FLAGS_UTILS_H_ #define NET_QUIC_PLATFORM_IMPL_QUIC_TEST_FLAGS_UTILS_H_ // When constructed, saves the current values of all QUIC flags. When // destructed, restores all QUIC flags to the saved values. class QuicFlagSaverImpl { … }; //// Checks if all QUIC flags are on their default values on construction. class QuicFlagChecker { … }; #endif // NET_QUIC_PLATFORM_IMPL_QUIC_TEST_FLAGS_UTILS_H_