// 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_DEFLATE_PREDICTOR_H_ #define NET_WEBSOCKETS_WEBSOCKET_DEFLATE_PREDICTOR_H_ #include <stddef.h> #include <memory> #include <vector> #include "net/base/net_export.h" namespace net { struct WebSocketFrame; // WebSocketDeflatePredictor is an interface class used for judging whether // a WebSocketDeflateStream should compress a message or not. class NET_EXPORT_PRIVATE WebSocketDeflatePredictor { … }; } // namespace net #endif // NET_WEBSOCKETS_WEBSOCKET_DEFLATE_PREDICTOR_H_