| 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..c2a83d61191c0917407812bb811ee876a04e3c49 100644
|
| --- a/net/quic/core/crypto/crypto_framer.cc
|
| +++ b/net/quic/core/crypto/crypto_framer.cc
|
| @@ -12,8 +12,6 @@
|
| #include "net/quic/core/quic_data_writer.h"
|
|
|
| using base::StringPiece;
|
| -using std::pair;
|
| -using std::vector;
|
|
|
| namespace net {
|
|
|
| @@ -260,7 +258,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);
|
|
|