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

Unified Diff: net/tools/quic/quic_client_base.h

Issue 1761263002: Landing recent QUIC changes until 7:19 PM, Feb 26, 2016 UTC-5. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add ActivateStream() call to QuicChromiumClientSession to fix server push failure Created 4 years, 10 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/quic_client.cc ('k') | net/tools/quic/quic_client_bin.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/tools/quic/quic_client_base.h
diff --git a/net/tools/quic/quic_client_base.h b/net/tools/quic/quic_client_base.h
index 738eb1ec1b6f48168c31863239d2b3cf181575e7..206dd1a5b87d55e75989b4ca4837e5a1f9973ffc 100644
--- a/net/tools/quic/quic_client_base.h
+++ b/net/tools/quic/quic_client_base.h
@@ -170,6 +170,14 @@ class QuicClientBase {
QuicConnectionHelperInterface* helper() { return helper_.get(); }
+ void set_num_sent_client_hellos(int num_sent_client_hellos) {
+ num_sent_client_hellos_ = num_sent_client_hellos;
+ }
+
+ void set_num_stateless_rejects_received(int num_stateless_rejects_received) {
+ num_stateless_rejects_received_ = num_stateless_rejects_received;
+ }
+
private:
// |server_id_| is a tuple (hostname, port, is_https) of the server.
QuicServerId server_id_;
« no previous file with comments | « net/tools/quic/quic_client.cc ('k') | net/tools/quic/quic_client_bin.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698