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

Unified Diff: net/quic/quic_config.h

Issue 608453007: No functional change. Rename QuicConfig methods from lowercase with (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@Add_test_to_TcpCubicSender_76165601
Patch Set: Created 6 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
« no previous file with comments | « no previous file | net/quic/quic_config.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/quic_config.h
diff --git a/net/quic/quic_config.h b/net/quic/quic_config.h
index 75e46f6bd9464b3cf2e93724fd136898b23ec3b0..a9254f82deb606639a4283804562aa6d1b44bfe6 100644
--- a/net/quic/quic_config.h
+++ b/net/quic/quic_config.h
@@ -258,10 +258,10 @@ class NET_EXPORT_PRIVATE QuicConfig {
QuicConfig();
~QuicConfig();
- void set_congestion_feedback(const QuicTagVector& congestion_feedback,
- QuicTag default_congestion_feedback);
+ void SetCongestionFeedback(const QuicTagVector& congestion_feedback,
+ QuicTag default_congestion_feedback);
- QuicTag congestion_feedback() const;
+ QuicTag CongestionFeedback() const;
void SetConnectionOptionsToSend(const QuicTagVector& connection_options);
@@ -273,18 +273,17 @@ class NET_EXPORT_PRIVATE QuicConfig {
QuicTagVector SendConnectionOptions() const;
- void set_idle_connection_state_lifetime(
+ void SetIdleConnectionStateLifetime(
QuicTime::Delta max_idle_connection_state_lifetime,
QuicTime::Delta default_idle_conection_state_lifetime);
- QuicTime::Delta idle_connection_state_lifetime() const;
+ QuicTime::Delta IdleConnectionStateLifetime() const;
- QuicTime::Delta keepalive_timeout() const;
+ QuicTime::Delta KeepaliveTimeout() const;
- void set_max_streams_per_connection(size_t max_streams,
- size_t default_streams);
+ void SetMaxStreamsPerConnection(size_t max_streams, size_t default_streams);
- uint32 max_streams_per_connection() const;
+ uint32 MaxStreamsPerConnection() const;
void set_max_time_before_crypto_handshake(
QuicTime::Delta max_time_before_crypto_handshake);
« no previous file with comments | « no previous file | net/quic/quic_config.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698