because of some tests I am interested to change some network parameters in Chrome browser code before building.
these parameters are available in Firefox through about:config but not available for chrome.
1- network.http.connection-retry-timeout: used to manage the browser retry time out to start a new TCP connection.
2- network.http.speculative-parallel-limit: used to manage the behavior of the browser to establish speculative connections.
3- network.http.max-connections: maximum number of established TCP connections
4- network.http.max-persistent-connections-per-server: maximum number of TCP connection per domain.
I want to know where to find these modules in the source code in term to change as per my required parameters.
Thanks,