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

Unified Diff: net/tools/quic/test_tools/quic_test_client.cc

Issue 19858003: * Removed QuicTag kQuicVersion1 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed comments from rch Created 7 years, 5 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
« no previous file with comments | « net/tools/quic/test_tools/quic_test_client.h ('k') | net/tools/quic/test_tools/quic_test_utils.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/tools/quic/test_tools/quic_test_client.cc
diff --git a/net/tools/quic/test_tools/quic_test_client.cc b/net/tools/quic/test_tools/quic_test_client.cc
index b8ad0bbb384aae19694afb582d156b371eeea686..ef9a1640534626d100037e9fd01757c47f9d2706 100644
--- a/net/tools/quic/test_tools/quic_test_client.cc
+++ b/net/tools/quic/test_tools/quic_test_client.cc
@@ -85,15 +85,17 @@ BalsaHeaders* MungeHeaders(const BalsaHeaders* const_headers,
return headers;
}
-QuicTestClient::QuicTestClient(IPEndPoint address, const string& hostname)
- : client_(address, hostname) {
+QuicTestClient::QuicTestClient(IPEndPoint address, const string& hostname,
+ const QuicVersion version)
+ : client_(address, hostname, version) {
Initialize(address, hostname);
}
QuicTestClient::QuicTestClient(IPEndPoint address,
const string& hostname,
- bool secure)
- : client_(address, hostname) {
+ bool secure,
+ const QuicVersion version)
+ : client_(address, hostname, version) {
Initialize(address, hostname);
secure_ = secure;
// TODO(alyssar, agl) uncomment here and below when default certs are allowed.
@@ -102,8 +104,9 @@ QuicTestClient::QuicTestClient(IPEndPoint address,
QuicTestClient::QuicTestClient(IPEndPoint address,
const string& hostname,
- const QuicConfig& config)
- : client_(address, hostname, config) {
+ const QuicConfig& config,
+ const QuicVersion version)
+ : client_(address, hostname, config, version) {
Initialize(address, hostname);
}
« no previous file with comments | « net/tools/quic/test_tools/quic_test_client.h ('k') | net/tools/quic/test_tools/quic_test_utils.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698