Lines Matching refs:WebSocket
44 class WebSocketHixie76 : public net::WebSocket {
46 static net::WebSocket* Create(HttpConnection* connection, in Create()
114 size_t* pos) : WebSocket(connection) { in WebSocketHixie76()
170 class WebSocketHybi17 : public WebSocket {
172 static WebSocket* Create(HttpConnection* connection, in Create()
212 WebSocket::DecodeFrameHybi17(frame, true, &bytes_consumed, message); in Read()
223 std::string data = WebSocket::EncodeFrameHybi17(message, 0); in Send()
231 : WebSocket(connection), in WebSocketHybi17()
260 WebSocket* WebSocket::CreateWebSocket(HttpConnection* connection, in CreateWebSocket()
263 WebSocket* socket = WebSocketHybi17::Create(connection, request, pos); in CreateWebSocket()
271 WebSocket::ParseResult WebSocket::DecodeFrameHybi17(const std::string& frame, in DecodeFrameHybi17()
362 std::string WebSocket::EncodeFrameHybi17(const std::string& message, in EncodeFrameHybi17()
403 WebSocket::WebSocket(HttpConnection* connection) : connection_(connection) { in WebSocket() function in net::WebSocket