| Index: net/quic/core/crypto/crypto_framer.cc
|
| diff --git a/net/quic/core/crypto/crypto_framer.cc b/net/quic/core/crypto/crypto_framer.cc
|
| index 2dd8f6329e336942b21b9f921d6b1974dce4cd72..b9b0e84aa9cbd096f9c19aaa30eb4e5c05942f8b 100644
|
| --- a/net/quic/core/crypto/crypto_framer.cc
|
| +++ b/net/quic/core/crypto/crypto_framer.cc
|
| @@ -260,7 +260,7 @@ QuicErrorCode CryptoFramer::Process(StringPiece input) {
|
| if (reader.BytesRemaining() < values_len_) {
|
| break;
|
| }
|
| - for (const pair<QuicTag, size_t>& item : tags_and_lengths_) {
|
| + for (const std::pair<QuicTag, size_t>& item : tags_and_lengths_) {
|
| StringPiece value;
|
| reader.ReadStringPiece(&value, item.second);
|
| message_.SetStringPiece(item.first, value);
|
|
|