| Index: net/quic/test_tools/quic_framer_peer.cc
|
| diff --git a/net/quic/test_tools/quic_framer_peer.cc b/net/quic/test_tools/quic_framer_peer.cc
|
| index c6464cc70f72aca904d636cde1b242d58bcc2e98..0ae85df39fbb5dba91dca6541b72eb0a20ce0a7c 100644
|
| --- a/net/quic/test_tools/quic_framer_peer.cc
|
| +++ b/net/quic/test_tools/quic_framer_peer.cc
|
| @@ -21,7 +21,8 @@ QuicPacketSequenceNumber QuicFramerPeer::CalculatePacketSequenceNumberFromWire(
|
|
|
| // static
|
| void QuicFramerPeer::SetLastSerializedConnectionId(
|
| - QuicFramer* framer, QuicConnectionId connection_id) {
|
| + QuicFramer* framer,
|
| + QuicConnectionId connection_id) {
|
| framer->last_serialized_connection_id_ = connection_id;
|
| }
|
|
|
| @@ -46,13 +47,11 @@ void QuicFramerPeer::SwapCrypters(QuicFramer* framer1, QuicFramer* framer2) {
|
| framer2->decrypter_level_ = framer1->decrypter_level_;
|
| framer1->decrypter_level_ = framer2_level;
|
| framer2_level = framer2->alternative_decrypter_level_;
|
| - framer2->alternative_decrypter_level_ =
|
| - framer1->alternative_decrypter_level_;
|
| + framer2->alternative_decrypter_level_ = framer1->alternative_decrypter_level_;
|
| framer1->alternative_decrypter_level_ = framer2_level;
|
|
|
| const bool framer2_latch = framer2->alternative_decrypter_latch_;
|
| - framer2->alternative_decrypter_latch_ =
|
| - framer1->alternative_decrypter_latch_;
|
| + framer2->alternative_decrypter_latch_ = framer1->alternative_decrypter_latch_;
|
| framer1->alternative_decrypter_latch_ = framer2_latch;
|
| }
|
|
|
|
|