| Index: net/quic/crypto/quic_decrypter.cc
|
| diff --git a/net/quic/crypto/quic_decrypter.cc b/net/quic/crypto/quic_decrypter.cc
|
| index 997a31177863b90aae306592268678048f32c3c2..aa036df5e5771236c27f0a545d8c3619fe0c7973 100644
|
| --- a/net/quic/crypto/quic_decrypter.cc
|
| +++ b/net/quic/crypto/quic_decrypter.cc
|
| @@ -10,6 +10,10 @@ namespace net {
|
| // static
|
| QuicDecrypter* QuicDecrypter::Create(CryptoTag algorithm) {
|
| switch (algorithm) {
|
| + case kAESG:
|
| + // TODO(wtc): add support for Aes128GcmDecrypter.
|
| + // return new Aes128GcmDecrypter();
|
| + return new NullDecrypter();
|
| case kNULL:
|
| return new NullDecrypter();
|
| default:
|
|
|