// Copyright 2013 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef NET_WEBSOCKETS_WEBSOCKET_DEFLATER_H_ #define NET_WEBSOCKETS_WEBSOCKET_DEFLATER_H_ #include <stddef.h> #include <memory> #include <vector> #include "base/containers/circular_deque.h" #include "base/memory/scoped_refptr.h" #include "net/base/net_export.h" extern "C" struct z_stream_s; namespace net { class IOBufferWithSize; class NET_EXPORT_PRIVATE WebSocketDeflater { … }; } // namespace net #endif // NET_WEBSOCKETS_WEBSOCKET_DEFLATER_H_