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

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

namespace http2 {
namespace test {

void HpackStringDecoderVLoggingListener::OnStringStart(bool huffman_encoded,
                                                       size_t len) {}

void HpackStringDecoderVLoggingListener::OnStringData(const char* data,
                                                      size_t len) {}

void HpackStringDecoderVLoggingListener::OnStringEnd() {}

}  // namespace test
}  // namespace http2