Chromium Code Reviews| Index: net/server/web_socket.h |
| diff --git a/net/server/web_socket.h b/net/server/web_socket.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..af6f23b9af7c0c5ac8c5dce17665a5f4f064fcef |
| --- /dev/null |
| +++ b/net/server/web_socket.h |
| @@ -0,0 +1,45 @@ |
| +// Copyright (c) 2011 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_ |
| +#pragma once |
| + |
| +#include <string> |
| + |
| +#include "base/basictypes.h" |
| +#include "base/memory/scoped_ptr.h" |
| + |
| +namespace net { |
| + |
| +class HttpConnection; |
| +class HttpServerRequestInfo; |
| + |
| +class WebSocket { |
| + public: |
| + static WebSocket* CreateWebSocket(HttpConnection* connection, |
| + const HttpServerRequestInfo& request, |
| + size_t* pos); |
| + |
| + enum ParseResult { |
| + FRAME_OK, |
| + FRAME_INCOMPLETE, |
| + FRAME_ERROR |
| + }; |
| + |
| + virtual void Accept(const HttpServerRequestInfo& request) = 0; |
| + virtual ParseResult Read(std::string* message) = 0; |
| + virtual void Send(const std::string& message) = 0; |
| + |
| + protected: |
| + WebSocket(HttpConnection* connection); |
|
yurys
2011/08/01 13:42:29
"explicit" modifier is missing.
|
| + HttpConnection* connection_; |
| + |
| + private: |
| + DISALLOW_COPY_AND_ASSIGN(WebSocket); |
| +}; |
| + |
| +} // namespace net |
| + |
| +#endif // NET_SERVER_WEB_SOCKET_H_ |