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

Unified Diff: net/quic/core/crypto/null_decrypter.cc

Issue 2340583002: Make DiversificationNonce a std::array (Closed)
Patch Set: Created 4 years, 3 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/core/crypto/null_decrypter.h ('k') | net/quic/core/crypto/quic_crypto_server_config.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/core/crypto/null_decrypter.cc
diff --git a/net/quic/core/crypto/null_decrypter.cc b/net/quic/core/crypto/null_decrypter.cc
index 132e93321d42778679ed3548ed49c37f9b10702f..dabbff59b463c9ad3b8929e9471940b4f723a496 100644
--- a/net/quic/core/crypto/null_decrypter.cc
+++ b/net/quic/core/crypto/null_decrypter.cc
@@ -30,7 +30,7 @@ bool NullDecrypter::SetPreliminaryKey(StringPiece key) {
return false;
}
-bool NullDecrypter::SetDiversificationNonce(DiversificationNonce nonce) {
+bool NullDecrypter::SetDiversificationNonce(const DiversificationNonce& nonce) {
QUIC_BUG << "Should not be called";
return true;
}
« no previous file with comments | « net/quic/core/crypto/null_decrypter.h ('k') | net/quic/core/crypto/quic_crypto_server_config.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698