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

Unified Diff: net/quic/crypto/scoped_evp_cipher_ctx.h

Issue 14816006: Land Recent QUIC changes (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Added missing NET_PRIVATE_EXPORT to QuicWallTime Created 7 years, 7 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/crypto/quic_random.cc ('k') | net/quic/crypto/strike_register.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/crypto/scoped_evp_cipher_ctx.h
diff --git a/net/quic/crypto/scoped_evp_cipher_ctx.h b/net/quic/crypto/scoped_evp_cipher_ctx.h
index a241eea2f3c64d0a3a350d3d2fcc9ebe2da466ab..8741c3ec8f9365b7f8a12373856bcad86bdbd597 100644
--- a/net/quic/crypto/scoped_evp_cipher_ctx.h
+++ b/net/quic/crypto/scoped_evp_cipher_ctx.h
@@ -18,9 +18,7 @@ namespace net {
// functions.
class ScopedEVPCipherCtx {
public:
- ScopedEVPCipherCtx() {
- EVP_CIPHER_CTX_init(&ctx_);
- }
+ ScopedEVPCipherCtx() { EVP_CIPHER_CTX_init(&ctx_); }
~ScopedEVPCipherCtx() {
int rv = EVP_CIPHER_CTX_cleanup(&ctx_);
« no previous file with comments | « net/quic/crypto/quic_random.cc ('k') | net/quic/crypto/strike_register.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698