// Copyright 2014 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_SERVER_WEB_SOCKET_ENCODER_H_ #define NET_SERVER_WEB_SOCKET_ENCODER_H_ #include <memory> #include <string> #include <string_view> #include <vector> #include "net/base/net_export.h" #include "net/server/web_socket.h" #include "net/server/web_socket_parse_result.h" #include "net/websockets/websocket_deflater.h" #include "net/websockets/websocket_inflater.h" namespace net { class WebSocketDeflateParameters; class NET_EXPORT WebSocketEncoder final { … }; } // namespace net #endif // NET_SERVER_WEB_SOCKET_ENCODER_H_