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

Unified Diff: net/quic/quic_config.h

Issue 968233004: Land Recent QUIC Changes until 03/02/2015. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@cleanup
Patch Set: Created 5 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/quic/quic_bandwidth_test.cc ('k') | 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 83e06184ef0be8c6ae4797e0058bbd6c37fbc48e..ceb56e2d76a60b9b654162dd76299e4aa8742569 100644
--- a/net/quic/quic_config.h
+++ b/net/quic/quic_config.h
@@ -182,39 +182,6 @@ class NET_EXPORT_PRIVATE QuicFixedUint32 : public QuicConfigValue {
};
// Stores tag from CHLO or SHLO messages that are not negotiated.
-class NET_EXPORT_PRIVATE QuicFixedTag : public QuicConfigValue {
- public:
- QuicFixedTag(QuicTag name, QuicConfigPresence presence);
- ~QuicFixedTag() override;
-
- bool HasSendValue() const;
-
- QuicTag GetSendValue() const;
-
- void SetSendValue(QuicTag value);
-
- bool HasReceivedValue() const;
-
- QuicTag GetReceivedValue() const;
-
- void SetReceivedValue(QuicTag value);
-
- // If has_send_value is true, serialises |tag_| and |send_value_| to |out|.
- void ToHandshakeMessage(CryptoHandshakeMessage* out) const override;
-
- // Sets |value_| to the corresponding value from |client_hello_| if it exists.
- QuicErrorCode ProcessPeerHello(const CryptoHandshakeMessage& peer_hello,
- HelloType hello_type,
- std::string* error_details) override;
-
- private:
- QuicTag send_value_;
- bool has_send_value_;
- QuicTag receive_value_;
- bool has_receive_value_;
-};
-
-// Stores tag from CHLO or SHLO messages that are not negotiated.
class NET_EXPORT_PRIVATE QuicFixedTagVector : public QuicConfigValue {
public:
QuicFixedTagVector(QuicTag name, QuicConfigPresence presence);
@@ -348,8 +315,6 @@ class NET_EXPORT_PRIVATE QuicConfig {
// Sets socket receive buffer to transmit to the peer.
void SetSocketReceiveBufferToSend(uint32 window_bytes);
- uint32 GetSocketReceiveBufferToSend() const;
-
bool HasReceivedSocketReceiveBuffer() const;
uint32 ReceivedSocketReceiveBuffer() const;
« no previous file with comments | « net/quic/quic_bandwidth_test.cc ('k') | net/quic/quic_config.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698