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

Unified Diff: net/quic/quic_stream_factory_test.cc

Issue 11416058: Integrating the QuicStreamFactory into the network stack. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix static initializer Created 8 years 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
« no previous file with comments | « net/quic/quic_stream_factory.cc ('k') | net/quic/quic_utils.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/quic_stream_factory_test.cc
diff --git a/net/quic/quic_stream_factory_test.cc b/net/quic/quic_stream_factory_test.cc
index 68920a26169b66a87649241a55e2a194cc54ce2e..ce64bc865306d35935db5a9c135e21bcd124a34a 100644
--- a/net/quic/quic_stream_factory_test.cc
+++ b/net/quic/quic_stream_factory_test.cc
@@ -25,7 +25,8 @@ class QuicStreamFactoryTest : public ::testing::Test {
protected:
QuicStreamFactoryTest()
: factory_(&host_resolver_, &socket_factory_,
- base::Bind(&QuicStreamFactoryTest::GenerateGuid), &clock_),
+ base::Bind(&QuicStreamFactoryTest::GenerateGuid),
+ new MockClock()),
host_port_proxy_pair_(HostPortPair("www.google.com", 443),
ProxyServer::Direct()) {
}
@@ -107,7 +108,6 @@ class QuicStreamFactoryTest : public ::testing::Test {
MockHostResolver host_resolver_;
MockClientSocketFactory socket_factory_;
- MockClock clock_;
QuicStreamFactory factory_;
HostPortProxyPair host_port_proxy_pair_;
BoundNetLog net_log_;
« no previous file with comments | « net/quic/quic_stream_factory.cc ('k') | net/quic/quic_utils.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698