chromium/net/third_party/quiche/src/quiche/http2/hpack/decoder/hpack_entry_decoder_listener.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/hpack/decoder/hpack_entry_decoder_listener.h"

#include "quiche/common/platform/api/quiche_logging.h"

namespace http2 {

void HpackEntryDecoderVLoggingListener::OnIndexedHeader(size_t index) {}

void HpackEntryDecoderVLoggingListener::OnStartLiteralHeader(
    HpackEntryType entry_type, size_t maybe_name_index) {}

void HpackEntryDecoderVLoggingListener::OnNameStart(bool huffman_encoded,
                                                    size_t len) {}

void HpackEntryDecoderVLoggingListener::OnNameData(const char* data,
                                                   size_t len) {}

void HpackEntryDecoderVLoggingListener::OnNameEnd() {}

void HpackEntryDecoderVLoggingListener::OnValueStart(bool huffman_encoded,
                                                     size_t len) {}

void HpackEntryDecoderVLoggingListener::OnValueData(const char* data,
                                                    size_t len) {}

void HpackEntryDecoderVLoggingListener::OnValueEnd() {}

void HpackEntryDecoderVLoggingListener::OnDynamicTableSizeUpdate(size_t size) {}

}  // namespace http2