Index: net/quic/crypto/quic_decrypter.h |
diff --git a/net/quic/crypto/quic_decrypter.h b/net/quic/crypto/quic_decrypter.h |
index c8b691ddb24827a0ed4300ed2f6ddaffaffe2789..c648668f546861000b2af879db58d5531783afc2 100644 |
--- a/net/quic/crypto/quic_decrypter.h |
+++ b/net/quic/crypto/quic_decrypter.h |
@@ -49,6 +49,10 @@ class NET_EXPORT_PRIVATE QuicDecrypter { |
virtual QuicData* Decrypt(QuicPacketSequenceNumber sequence_number, |
base::StringPiece associated_data, |
base::StringPiece ciphertext) = 0; |
+ |
+ // For use by unit tests only. |
+ virtual base::StringPiece GetKey() const = 0; |
+ virtual base::StringPiece GetNoncePrefix() const = 0; |
}; |
} // namespace net |