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

Unified Diff: blimp/net/ssl_client_transport.cc

Issue 1962393004: Added a debug info UI for Blimp (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed Kevin's comments Created 4 years, 7 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: blimp/net/ssl_client_transport.cc
diff --git a/blimp/net/ssl_client_transport.cc b/blimp/net/ssl_client_transport.cc
index e5ccaf792130779b6a9cefb509bbfb087a5060bd..19f3b3c0b95ead7617616007a939129bbc78c086 100644
--- a/blimp/net/ssl_client_transport.cc
+++ b/blimp/net/ssl_client_transport.cc
@@ -21,8 +21,10 @@ namespace blimp {
SSLClientTransport::SSLClientTransport(const net::IPEndPoint& ip_endpoint,
scoped_refptr<net::X509Certificate> cert,
+ BlimpConnectionStatistics* statistics,
net::NetLog* net_log)
- : TCPClientTransport(ip_endpoint, net_log), ip_endpoint_(ip_endpoint) {
+ : TCPClientTransport(ip_endpoint, statistics, net_log),
+ ip_endpoint_(ip_endpoint) {
// Test code may pass in a null value for |cert|. Only spin up a CertVerifier
// if there is a cert present.
if (cert) {

Powered by Google App Engine
This is Rietveld 408576698