Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(410)

Unified Diff: net/spdy/core/hpack/hpack_huffman_decoder.cc

Issue 2832973003: Split net/spdy into core and chromium subdirectories. (Closed)
Patch Set: Fix some more build rules. Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/spdy/core/hpack/hpack_huffman_decoder.h ('k') | net/spdy/core/hpack/hpack_huffman_decoder_test.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 {
« no previous file with comments | « net/spdy/core/hpack/hpack_huffman_decoder.h ('k') | net/spdy/core/hpack/hpack_huffman_decoder_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698