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

Unified Diff: net/quic/quic_http_stream_test.cc

Issue 1305293004: Notfiy NQE of QUIC RTT (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Updated with more comments and tests Created 5 years, 3 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: net/quic/quic_http_stream_test.cc
diff --git a/net/quic/quic_http_stream_test.cc b/net/quic/quic_http_stream_test.cc
index 84d1bf458084f69f05c55139de6c1a3b8ac09746..22e45d6ad289da6558c8db82ff25b3827d844d45 100644
--- a/net/quic/quic_http_stream_test.cc
+++ b/net/quic/quic_http_stream_test.cc
@@ -50,6 +50,9 @@ using testing::AnyNumber;
using testing::Return;
namespace net {
+
+class SocketPerformanceWatcher;
+
namespace test {
namespace {
@@ -71,7 +74,8 @@ class TestQuicConnection : public QuicConnection {
true /* owns_writer */,
Perspective::IS_CLIENT,
false /* is_secure */,
- versions) {}
+ versions,
+ scoped_ptr<SocketPerformanceWatcher>()) {}
void SetSendAlgorithm(SendAlgorithmInterface* send_algorithm) {
QuicConnectionPeer::SetSendAlgorithm(this, send_algorithm);

Powered by Google App Engine
This is Rietveld 408576698