// Copyright 2016 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "quiche/http2/test_tools/http2_constants_test_util.h" #include <vector> namespace http2 { namespace test { std::vector<Http2ErrorCode> AllHttp2ErrorCodes() { … } std::vector<Http2SettingsParameter> AllHttp2SettingsParameters() { … } // Returns a mask of flags supported for the specified frame type. Returns // zero for unknown frame types. uint8_t KnownFlagsMaskForFrameType(Http2FrameType type) { … } uint8_t InvalidFlagMaskForFrameType(Http2FrameType type) { … } } // namespace test } // namespace http2