Chromium Code Reviews| Index: net/server/http_server.h |
| diff --git a/net/server/http_server.h b/net/server/http_server.h |
| index 47214ab158ec639436894790579d19ced2bb84c7..023470a4f0b392cafa77ec886d19bee96066b400 100644 |
| --- a/net/server/http_server.h |
| +++ b/net/server/http_server.h |
| @@ -40,6 +40,10 @@ class HttpServer { |
| virtual void OnClose(int connection_id) = 0; |
| }; |
| + // Instantiates a http server with |server_socket| which already started |
| + // listening, but not accepting. This constructor schedules accepting |
| + // connections in next run loop in case when |delegate| is not ready to get |
|
mmenke
2014/10/31 18:23:02
nit: Maybe just "next run loop" -> "asynchronousl
byungchul
2014/10/31 18:42:56
Done.
|
| + // callbacks yet. |
| HttpServer(scoped_ptr<ServerSocket> server_socket, |
| HttpServer::Delegate* delegate); |
| ~HttpServer(); |