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

Unified Diff: net/quic/quic_http_stream_test.cc

Issue 11961022: Remove default constructors for QuicTime and QuicTime::Delta and used static Zero() methods instead… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 11 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 58a0e83df9bcdaae3dbc614cb080ba5cc58aac5d..9190399fa9597ddb7bcae4fbe1e991962390537e 100644
--- a/net/quic/quic_http_stream_test.cc
+++ b/net/quic/quic_http_stream_test.cc
@@ -162,7 +162,7 @@ class QuicHttpStreamTest : public ::testing::Test {
scheduler_ = new MockScheduler();
collector_ = new TestCollector(NULL);
EXPECT_CALL(*scheduler_, TimeUntilSend(_)).
- WillRepeatedly(testing::Return(QuicTime::Delta()));
+ WillRepeatedly(testing::Return(QuicTime::Delta::Zero()));
helper_ = new QuicConnectionHelper(runner_.get(), &clock_,
&random_generator_, socket);
connection_ = new TestQuicConnection(guid_, peer_addr_, helper_);
« no previous file with comments | « net/quic/quic_framer_test.cc ('k') | net/quic/quic_time.h » ('j') | net/quic/quic_time.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698