| // Copyright (c) 2012 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 NET_SERVER_WEB_SOCKET_H_ |
| #define NET_SERVER_WEB_SOCKET_H_ |
| #include "base/basictypes.h" |
| class HttpServerRequestInfo; |
| static WebSocket* CreateWebSocket(HttpConnection* connection, |
| const HttpServerRequestInfo& request, |
| virtual void Accept(const HttpServerRequestInfo& request) = 0; |
| virtual ParseResult Read(std::string* message) = 0; |
| virtual void Send(const std::string& message) = 0; |
| explicit WebSocket(HttpConnection* connection); |
| HttpConnection* connection_; |
| DISALLOW_COPY_AND_ASSIGN(WebSocket); |
| #endif // NET_SERVER_WEB_SOCKET_H_ |