Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1106)

Unified Diff: net/server/http_server.h

Issue 594393002: Add net::HttpServer::Delegate::OnConnect() function and set ChromeDriver buffer sizes to 100 MB (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: net/server/http_server.h
diff --git a/net/server/http_server.h b/net/server/http_server.h
index 2ae698b98c5329424e31b2b2bfab616fad85c3ac..47214ab158ec639436894790579d19ced2bb84c7 100644
--- a/net/server/http_server.h
+++ b/net/server/http_server.h
@@ -30,6 +30,7 @@ class HttpServer {
// destroy the HttpServer in any of these callbacks.
class Delegate {
public:
+ virtual void OnConnect(int connection_id) = 0;
virtual void OnHttpRequest(int connection_id,
const HttpServerRequestInfo& info) = 0;
virtual void OnWebSocketRequest(int connection_id,

Powered by Google App Engine
This is Rietveld 408576698