Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(290)

Unified Diff: net/quic/core/crypto/crypto_framer.cc

Issue 2460223002: Adds std:: to stl types (#049) (Closed)
Patch Set: for review Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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);

Powered by Google App Engine
This is Rietveld 408576698