// Copyright 2017 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 QUICHE_HTTP2_CORE_ARRAY_OUTPUT_BUFFER_H_ #define QUICHE_HTTP2_CORE_ARRAY_OUTPUT_BUFFER_H_ #include <cstddef> #include <cstdint> #include "quiche/http2/core/zero_copy_output_buffer.h" #include "quiche/common/platform/api/quiche_export.h" namespace spdy { class QUICHE_EXPORT ArrayOutputBuffer : public ZeroCopyOutputBuffer { … }; } // namespace spdy #endif // QUICHE_HTTP2_CORE_ARRAY_OUTPUT_BUFFER_H_