Merge from Chromium at DEPS revision 251904

This commit was generated by merge_to_master.py.

Change-Id: I1f9543259d7d2a57d81aa41a1b84f85837439d21
diff --git a/net/quic/quic_connection_logger.h b/net/quic/quic_connection_logger.h
index d162282..ed9577a 100644
--- a/net/quic/quic_connection_logger.h
+++ b/net/quic/quic_connection_logger.h
@@ -5,12 +5,12 @@
 #ifndef NET_QUIC_QUIC_CONNECTION_LOGGER_H_
 #define NET_QUIC_QUIC_CONNECTION_LOGGER_H_
 
+#include "net/base/ip_endpoint.h"
 #include "net/quic/quic_connection.h"
 #include "net/quic/quic_protocol.h"
 
 namespace net {
 
-class BoundNetLog;
 class CryptoHandshakeMessage;
 
 // This class is a debug visitor of a QuicConnection which logs
@@ -72,6 +72,12 @@
   // Number of times that the current received packet sequence number is
   // smaller than the last received packet sequence number.
   size_t out_of_order_recieved_packet_count_;
+  // Number of times a truncated ACK frame was sent.
+  size_t num_truncated_acks_sent_;
+  // Number of times a truncated ACK frame was received.
+  size_t num_truncated_acks_received_;
+  // The kCADR value provided by the server in ServerHello.
+  IPEndPoint client_address_;
   DISALLOW_COPY_AND_ASSIGN(QuicConnectionLogger);
 };