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

Unified Diff: blimp/net/stream_socket_connection.h

Issue 1962393004: Added a debug info UI for Blimp (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Added statistics object to BlimpEngineSession 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/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;

Powered by Google App Engine
This is Rietveld 408576698