Index: net/quic/crypto/crypto_handshake.cc |
diff --git a/net/quic/crypto/crypto_handshake.cc b/net/quic/crypto/crypto_handshake.cc |
index 408b76bdecff8a02c23856ef35bd247832edc63b..8341365940217e4a96089c5b6013d4de31ba211d 100644 |
--- a/net/quic/crypto/crypto_handshake.cc |
+++ b/net/quic/crypto/crypto_handshake.cc |
@@ -12,15 +12,17 @@ |
namespace net { |
QuicCryptoNegotiatedParameters::QuicCryptoNegotiatedParameters() |
- : key_exchange(0), |
- aead(0) { |
+ : key_exchange(0), aead(0) { |
} |
-QuicCryptoNegotiatedParameters::~QuicCryptoNegotiatedParameters() {} |
+QuicCryptoNegotiatedParameters::~QuicCryptoNegotiatedParameters() { |
+} |
-CrypterPair::CrypterPair() {} |
+CrypterPair::CrypterPair() { |
+} |
-CrypterPair::~CrypterPair() {} |
+CrypterPair::~CrypterPair() { |
+} |
// static |
const char QuicCryptoConfig::kInitialLabel[] = "QUIC key expansion"; |
@@ -36,6 +38,7 @@ QuicCryptoConfig::QuicCryptoConfig() |
: common_cert_sets(CommonCertSets::GetInstanceQUIC()) { |
} |
-QuicCryptoConfig::~QuicCryptoConfig() {} |
+QuicCryptoConfig::~QuicCryptoConfig() { |
+} |
} // namespace net |