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

Unified Diff: net/socket/socket_test_util.cc

Issue 1027693004: Delete the ClientSocketPoolHistograms class. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: small xml fix Created 5 years, 9 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
« no previous file with comments | « net/socket/socket_test_util.h ('k') | net/socket/socks_client_socket_pool.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/socket/socket_test_util.cc
diff --git a/net/socket/socket_test_util.cc b/net/socket/socket_test_util.cc
index fb22055fffe479f916a9fead6880a1521bdff69f..4de30ddde09d505c4e70daabe23a911dbf788be0 100644
--- a/net/socket/socket_test_util.cc
+++ b/net/socket/socket_test_util.cc
@@ -21,7 +21,6 @@
#include "net/http/http_network_session.h"
#include "net/http/http_request_headers.h"
#include "net/http/http_response_headers.h"
-#include "net/socket/client_socket_pool_histograms.h"
#include "net/socket/socket.h"
#include "net/socket/websocket_endpoint_lock_manager.h"
#include "net/ssl/ssl_cert_request_info.h"
@@ -1756,10 +1755,12 @@ void MockTransportClientSocketPool::MockConnectJob::OnConnect(int rv) {
MockTransportClientSocketPool::MockTransportClientSocketPool(
int max_sockets,
int max_sockets_per_group,
- ClientSocketPoolHistograms* histograms,
ClientSocketFactory* socket_factory)
- : TransportClientSocketPool(max_sockets, max_sockets_per_group, histograms,
- NULL, NULL, NULL),
+ : TransportClientSocketPool(max_sockets,
+ max_sockets_per_group,
+ NULL,
+ NULL,
+ NULL),
client_socket_factory_(socket_factory),
last_request_priority_(DEFAULT_PRIORITY),
release_count_(0),
@@ -1875,10 +1876,12 @@ void DeterministicMockClientSocketFactory::ClearSSLSessionCache() {
MockSOCKSClientSocketPool::MockSOCKSClientSocketPool(
int max_sockets,
int max_sockets_per_group,
- ClientSocketPoolHistograms* histograms,
TransportClientSocketPool* transport_pool)
- : SOCKSClientSocketPool(max_sockets, max_sockets_per_group, histograms,
- NULL, transport_pool, NULL),
+ : SOCKSClientSocketPool(max_sockets,
+ max_sockets_per_group,
+ NULL,
+ transport_pool,
+ NULL),
transport_pool_(transport_pool) {
}
« no previous file with comments | « net/socket/socket_test_util.h ('k') | net/socket/socks_client_socket_pool.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698