Index: net/quic/quic_connection.h |
diff --git a/net/quic/quic_connection.h b/net/quic/quic_connection.h |
index 257bea4b7a7a06bcbc6f93a4cc7b66210a924638..c50ec2415aa3f604822fba62eb8857a045c92109 100644 |
--- a/net/quic/quic_connection.h |
+++ b/net/quic/quic_connection.h |
@@ -160,8 +160,7 @@ class NET_EXPORT_PRIVATE QuicConnectionDebugVisitorInterface |
virtual void OnRstStreamFrame(const QuicRstStreamFrame& frame) {} |
// Called when a ConnectionCloseFrame has been parsed. |
- virtual void OnConnectionCloseFrame( |
- const QuicConnectionCloseFrame& frame) {} |
+ virtual void OnConnectionCloseFrame(const QuicConnectionCloseFrame& frame) {} |
// Called when a public reset packet has been received. |
virtual void OnPublicResetPacket(const QuicPublicResetPacket& packet) {} |
@@ -197,11 +196,7 @@ class NET_EXPORT_PRIVATE QuicConnection |
public QuicBlockedWriterInterface, |
public QuicPacketGenerator::DelegateInterface { |
public: |
- enum PacketType { |
- NORMAL, |
- QUEUED, |
- CONNECTION_CLOSE |
- }; |
+ enum PacketType { NORMAL, QUEUED, CONNECTION_CLOSE }; |
enum AckBundling { |
NO_ACK = 0, |
@@ -246,8 +241,7 @@ class NET_EXPORT_PRIVATE QuicConnection |
virtual void SendBlocked(QuicStreamId id); |
// Send a WINDOW_UPDATE frame to the peer. |
- virtual void SendWindowUpdate(QuicStreamId id, |
- QuicStreamOffset byte_offset); |
+ virtual void SendWindowUpdate(QuicStreamId id, QuicStreamOffset byte_offset); |
// Sends the connection close packet without affecting the state of the |
// connection. This should only be called if the session is actively being |
@@ -610,7 +604,7 @@ class NET_EXPORT_PRIVATE QuicConnection |
QuicFramer framer_; |
QuicConnectionHelperInterface* helper_; // Not owned. |
- QuicPacketWriter* writer_; // Not owned. |
+ QuicPacketWriter* writer_; // Not owned. |
EncryptionLevel encryption_level_; |
const QuicClock* clock_; |
QuicRandom* random_generator_; |
@@ -622,7 +616,7 @@ class NET_EXPORT_PRIVATE QuicConnection |
IPEndPoint peer_address_; |
bool last_packet_revived_; // True if the last packet was revived from FEC. |
- size_t last_size_; // Size of the last received packet. |
+ size_t last_size_; // Size of the last received packet. |
EncryptionLevel last_decrypted_packet_level_; |
QuicPacketHeader last_header_; |
std::vector<QuicStreamFrame> last_stream_frames_; |