| Index: net/quic/crypto/null_decrypter.cc
|
| diff --git a/net/quic/crypto/null_decrypter.cc b/net/quic/crypto/null_decrypter.cc
|
| index 8a18172a5c299ded7443f1cbfae583fe8fbd18e2..2f3cfc502e4cf99799d3a51155de68f5310ac616 100644
|
| --- a/net/quic/crypto/null_decrypter.cc
|
| +++ b/net/quic/crypto/null_decrypter.cc
|
| @@ -3,6 +3,9 @@
|
| // found in the LICENSE file.
|
|
|
| #include "net/quic/crypto/null_decrypter.h"
|
| +
|
| +#include <stdint.h>
|
| +
|
| #include "net/quic/quic_utils.h"
|
| #include "net/quic/quic_data_reader.h"
|
|
|
| @@ -67,7 +70,7 @@ uint128 NullDecrypter::ComputeHash(const StringPiece& data1,
|
| const StringPiece& data2) const {
|
| uint128 correct_hash = QuicUtils::FNV1a_128_Hash_Two(
|
| data1.data(), data1.length(), data2.data(), data2.length());
|
| - uint128 mask(GG_UINT64_C(0x0), GG_UINT64_C(0xffffffff));
|
| + uint128 mask(UINT64_C(0x0), UINT64_C(0xffffffff));
|
| mask <<= 96;
|
| correct_hash &= ~mask;
|
| return correct_hash;
|
|
|