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

Unified Diff: net/spdy/hpack/hpack_output_stream.h

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/hpack/hpack_input_stream_test.cc ('k') | net/spdy/hpack/hpack_output_stream.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/spdy/hpack/hpack_output_stream.h
diff --git a/net/spdy/hpack/hpack_output_stream.h b/net/spdy/hpack/hpack_output_stream.h
deleted file mode 100644
index 2748540565abda9b07173eed3102bc5f35a7c024..0000000000000000000000000000000000000000
--- a/net/spdy/hpack/hpack_output_stream.h
+++ /dev/null
@@ -1,78 +0,0 @@
-// Copyright 2014 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.
-
-#ifndef NET_SPDY_HPACK_HPACK_OUTPUT_STREAM_H_
-#define NET_SPDY_HPACK_HPACK_OUTPUT_STREAM_H_
-
-#include <stddef.h>
-#include <stdint.h>
-
-#include <map>
-
-#include "base/macros.h"
-#include "net/base/net_export.h"
-#include "net/spdy/hpack/hpack_constants.h"
-#include "net/spdy/platform/api/spdy_string.h"
-#include "net/spdy/platform/api/spdy_string_piece.h"
-
-// All section references below are to
-// http://tools.ietf.org/html/draft-ietf-httpbis-header-compression-08
-
-namespace net {
-
-// An HpackOutputStream handles all the low-level details of encoding
-// header fields.
-class NET_EXPORT_PRIVATE HpackOutputStream {
- public:
- HpackOutputStream();
- ~HpackOutputStream();
-
- // Appends the lower |bit_size| bits of |bits| to the internal buffer.
- //
- // |bit_size| must be > 0 and <= 8. |bits| must not have any bits
- // set other than the lower |bit_size| bits.
- void AppendBits(uint8_t bits, size_t bit_size);
-
- // Simply forwards to AppendBits(prefix.bits, prefix.bit-size).
- void AppendPrefix(HpackPrefix prefix);
-
- // Directly appends |buffer|.
- void AppendBytes(SpdyStringPiece buffer);
-
- // Appends the given integer using the representation described in
- // 6.1. If the internal buffer ends on a byte boundary, the prefix
- // length N is taken to be 8; otherwise, it is taken to be the
- // number of bits to the next byte boundary.
- //
- // It is guaranteed that the internal buffer will end on a byte
- // boundary after this function is called.
- void AppendUint32(uint32_t I);
-
- // Swaps the internal buffer with |output|, then resets state.
- void TakeString(SpdyString* output);
-
- // Gives up to |max_size| bytes of the internal buffer to |output|. Resets
- // internal state with the overflow.
- void BoundedTakeString(size_t max_size, SpdyString* output);
-
- // Size in bytes of stream's internal buffer.
- size_t size() const { return buffer_.size(); }
-
- // Returns the estimate of dynamically allocated memory in bytes.
- size_t EstimateMemoryUsage() const;
-
- private:
- // The internal bit buffer.
- SpdyString buffer_;
-
- // If 0, the buffer ends on a byte boundary. If non-zero, the buffer
- // ends on the nth most significant bit. Guaranteed to be < 8.
- size_t bit_offset_;
-
- DISALLOW_COPY_AND_ASSIGN(HpackOutputStream);
-};
-
-} // namespace net
-
-#endif // NET_SPDY_HPACK_HPACK_OUTPUT_STREAM_H_
« no previous file with comments | « net/spdy/hpack/hpack_input_stream_test.cc ('k') | net/spdy/hpack/hpack_output_stream.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698