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

Unified Diff: net/socket/websocket_transport_client_socket_pool.cc

Issue 2537373002: Use different source types for each ConnectJob subclass. (Closed)
Patch Set: mmenke comment Created 4 years 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/transport_client_socket_pool.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/socket/websocket_transport_client_socket_pool.cc
diff --git a/net/socket/websocket_transport_client_socket_pool.cc b/net/socket/websocket_transport_client_socket_pool.cc
index 987723c2032965b70a060b6686aa28ba66ad4c19..32ba290b53087a85285862324a69764578ba00d2 100644
--- a/net/socket/websocket_transport_client_socket_pool.cc
+++ b/net/socket/websocket_transport_client_socket_pool.cc
@@ -41,13 +41,14 @@ WebSocketTransportConnectJob::WebSocketTransportConnectJob(
Delegate* delegate,
NetLog* pool_net_log,
const NetLogWithSource& request_net_log)
- : ConnectJob(
- group_name,
- timeout_duration,
- priority,
- respect_limits,
- delegate,
- NetLogWithSource::Make(pool_net_log, NetLogSourceType::CONNECT_JOB)),
+ : ConnectJob(group_name,
+ timeout_duration,
+ priority,
+ respect_limits,
+ delegate,
+ NetLogWithSource::Make(
+ pool_net_log,
+ NetLogSourceType::WEB_SOCKET_TRANSPORT_CONNECT_JOB)),
params_(params),
resolver_(host_resolver),
client_socket_factory_(client_socket_factory),
« no previous file with comments | « net/socket/transport_client_socket_pool.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698