| Index: net/spdy/core/hpack/hpack_huffman_decoder.cc
|
| diff --git a/net/spdy/hpack/hpack_huffman_decoder.cc b/net/spdy/core/hpack/hpack_huffman_decoder.cc
|
| similarity index 98%
|
| rename from net/spdy/hpack/hpack_huffman_decoder.cc
|
| rename to net/spdy/core/hpack/hpack_huffman_decoder.cc
|
| index 49f9dae6ad27e62e888ee7895afdf345f5d19bc4..3e2fc9c2f9028bd4308dcd2aa6dffac64145f0cd 100644
|
| --- a/net/spdy/hpack/hpack_huffman_decoder.cc
|
| +++ b/net/spdy/core/hpack/hpack_huffman_decoder.cc
|
| @@ -11,7 +11,7 @@
|
| // See also https://en.wikipedia.org/wiki/Canonical_Huffman_code for background
|
| // on canonical Huffman codes.
|
| //
|
| -// This decoder differs from that in .../spdy/hpack/hpack_huffman_table.cc
|
| +// This decoder differs from that in .../spdy/chromium/hpack/hpack_huffman_table.cc
|
| // as follows:
|
| // 1) It decodes only the code described in RFC7541, where as the older
|
| // implementation supported any canonical Huffman code provided at run
|
| @@ -23,14 +23,14 @@
|
| // of the strings (faster for longer strings). Some of the improvements
|
| // could be back ported, but others are fundamental to the approach.
|
|
|
| -#include "net/spdy/hpack/hpack_huffman_decoder.h"
|
| +#include "net/spdy/core/hpack/hpack_huffman_decoder.h"
|
|
|
| #include <bitset>
|
| #include <limits>
|
| #include <utility>
|
|
|
| #include "base/logging.h"
|
| -#include "net/spdy/hpack/hpack_input_stream.h"
|
| +#include "net/spdy/core/hpack/hpack_input_stream.h"
|
|
|
| namespace net {
|
| namespace {
|
|
|