Index: blimp/net/stream_socket_connection.h |
diff --git a/blimp/net/stream_socket_connection.h b/blimp/net/stream_socket_connection.h |
index f86de2209df9bc76d57ce0149868aca079253dec..c479730f94b827d1e9caee09e6aa89cfb85e47c1 100644 |
--- a/blimp/net/stream_socket_connection.h |
+++ b/blimp/net/stream_socket_connection.h |
@@ -15,11 +15,13 @@ class StreamSocket; |
} // namespace net |
namespace blimp { |
+class BlimpConnectionStatistics; |
// BlimpConnection specialization for StreamSocket-based connections. |
class StreamSocketConnection : public BlimpConnection { |
public: |
- explicit StreamSocketConnection(std::unique_ptr<net::StreamSocket> socket); |
+ explicit StreamSocketConnection(std::unique_ptr<net::StreamSocket> socket, |
Kevin M
2016/05/24 22:56:40
Remove "explicit"
|
+ BlimpConnectionStatistics* statistics); |
~StreamSocketConnection() override; |