chromium/net/third_party/quiche/src/quiche/http2/decoder/decode_buffer.cc

// 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/decoder/decode_buffer.h"

namespace http2 {

uint8_t DecodeBuffer::DecodeUInt8() {}

uint16_t DecodeBuffer::DecodeUInt16() {}

uint32_t DecodeBuffer::DecodeUInt24() {}

uint32_t DecodeBuffer::DecodeUInt31() {}

uint32_t DecodeBuffer::DecodeUInt32() {}

#ifndef NDEBUG
void DecodeBuffer::set_subset_of_base(DecodeBuffer* base,
                                      const DecodeBufferSubset* subset) {}
void DecodeBuffer::clear_subset_of_base(DecodeBuffer* base,
                                        const DecodeBufferSubset* subset) {}
void DecodeBuffer::set_subset(const DecodeBufferSubset* subset) {}
void DecodeBuffer::clear_subset(const DecodeBufferSubset* subset) {}
void DecodeBufferSubset::DebugSetup() {}
void DecodeBufferSubset::DebugTearDown() {}
#endif

}  // namespace http2