Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef NET_QUIC_QUIC_CONNECTION_LOGGER_H_ | 5 #ifndef NET_QUIC_QUIC_CONNECTION_LOGGER_H_ |
| 6 #define NET_QUIC_QUIC_CONNECTION_LOGGER_H_ | 6 #define NET_QUIC_QUIC_CONNECTION_LOGGER_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 | 9 |
| 10 #include <bitset> | 10 #include <bitset> |
| 11 #include <string> | 11 #include <string> |
| 12 | 12 |
| 13 #include "base/macros.h" | 13 #include "base/macros.h" |
| 14 #include "base/metrics/histogram_base.h" | |
|
agl
2016/06/28 22:59:44
Could HistogramBase just be forward declared since
fdoray
2016/06/29 13:32:38
Done.
| |
| 14 #include "net/base/ip_endpoint.h" | 15 #include "net/base/ip_endpoint.h" |
| 15 #include "net/base/network_change_notifier.h" | 16 #include "net/base/network_change_notifier.h" |
| 16 #include "net/cert/cert_verify_result.h" | 17 #include "net/cert/cert_verify_result.h" |
| 17 #include "net/log/net_log.h" | 18 #include "net/log/net_log.h" |
| 18 #include "net/quic/crypto/crypto_handshake_message.h" | 19 #include "net/quic/crypto/crypto_handshake_message.h" |
| 19 #include "net/quic/quic_connection.h" | 20 #include "net/quic/quic_connection.h" |
| 20 #include "net/quic/quic_protocol.h" | 21 #include "net/quic/quic_protocol.h" |
| 21 #include "net/quic/quic_spdy_session.h" | 22 #include "net/quic/quic_spdy_session.h" |
| 22 #include "net/socket/socket_performance_watcher.h" | 23 #include "net/socket/socket_performance_watcher.h" |
| 23 | 24 |
| (...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 188 // Receives notifications regarding the performance of the underlying socket | 189 // Receives notifications regarding the performance of the underlying socket |
| 189 // for the QUIC connection. May be null. | 190 // for the QUIC connection. May be null. |
| 190 const std::unique_ptr<SocketPerformanceWatcher> socket_performance_watcher_; | 191 const std::unique_ptr<SocketPerformanceWatcher> socket_performance_watcher_; |
| 191 | 192 |
| 192 DISALLOW_COPY_AND_ASSIGN(QuicConnectionLogger); | 193 DISALLOW_COPY_AND_ASSIGN(QuicConnectionLogger); |
| 193 }; | 194 }; |
| 194 | 195 |
| 195 } // namespace net | 196 } // namespace net |
| 196 | 197 |
| 197 #endif // NET_QUIC_QUIC_CONNECTION_LOGGER_H_ | 198 #endif // NET_QUIC_QUIC_CONNECTION_LOGGER_H_ |
| OLD | NEW |