chromium/net/third_party/quiche/src/quiche/http2/test_tools/spdy_test_utils.cc

// Copyright (c) 2012 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/spdy_test_utils.h"

#include <algorithm>
#include <cstdint>
#include <cstring>
#include <memory>
#include <string>

#include "quiche/http2/core/spdy_protocol.h"
#include "quiche/common/platform/api/quiche_logging.h"
#include "quiche/common/platform/api/quiche_test.h"
#include "quiche/common/quiche_endian.h"

namespace spdy {
namespace test {

std::string HexDumpWithMarks(const unsigned char* data, int length,
                             const bool* marks, int mark_length) {}

void CompareCharArraysWithHexError(const std::string& description,
                                   const unsigned char* actual,
                                   const int actual_len,
                                   const unsigned char* expected,
                                   const int expected_len) {}

void SetFrameFlags(SpdySerializedFrame* frame, uint8_t flags) {}

void SetFrameLength(SpdySerializedFrame* frame, size_t length) {}

SpdySerializedFrame MakeSerializedFrame(const char* data, size_t length) {}

}  // namespace test
}  // namespace spdy