// Copyright 2016 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "net/tools/huffman_trie/bit_writer.h" #include "base/check.h" namespace net::huffman_trie { BitWriter::BitWriter() = default; BitWriter::~BitWriter() = default; void BitWriter::WriteBits(uint32_t bits, uint8_t number_of_bits) { … } void BitWriter::WriteBit(uint8_t bit) { … } void BitWriter::Flush() { … } } // namespace net::huffman_trie