#ifndef QUICHE_HTTP2_ADAPTER_CHUNKED_BUFFER_H_ #define QUICHE_HTTP2_ADAPTER_CHUNKED_BUFFER_H_ #include <memory> #include <vector> #include "absl/strings/string_view.h" #include "quiche/common/platform/api/quiche_export.h" #include "quiche/common/quiche_circular_deque.h" namespace http2 { namespace adapter { // A simple buffer class that organizes its memory as a queue of contiguous // regions. Data is written to the end, and read from the beginning. class QUICHE_EXPORT ChunkedBuffer { … }; } // namespace adapter } // namespace http2 #endif // QUICHE_HTTP2_ADAPTER_CHUNKED_BUFFER_H_