Index: net/spdy/hpack/hpack_input_stream.h |
diff --git a/net/spdy/hpack/hpack_input_stream.h b/net/spdy/hpack/hpack_input_stream.h |
index 610412101e2686c7c49ad74c696bdf96a7eaa7c1..5eff5627be2383382890ebdef31b405153b3aaf8 100644 |
--- a/net/spdy/hpack/hpack_input_stream.h |
+++ b/net/spdy/hpack/hpack_input_stream.h |
@@ -8,13 +8,13 @@ |
#include <stddef.h> |
#include <stdint.h> |
-#include <string> |
#include <utility> |
#include "base/macros.h" |
#include "net/base/net_export.h" |
#include "net/spdy/hpack/hpack_constants.h" |
#include "net/spdy/hpack/hpack_huffman_table.h" |
+#include "net/spdy/platform/api/spdy_string.h" |
#include "net/spdy/platform/api/spdy_string_piece.h" |
// All section references below are to |
@@ -49,7 +49,7 @@ class NET_EXPORT_PRIVATE HpackInputStream { |
bool DecodeNextUint32(uint32_t* I); |
bool DecodeNextIdentityString(SpdyStringPiece* str); |
- bool DecodeNextHuffmanString(std::string* str); |
+ bool DecodeNextHuffmanString(SpdyString* str); |
// Stores input bits into the most-significant, unfilled bits of |out|. |
// |peeked_count| is the number of filled bits in |out| which have been |