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

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

Issue 2460223002: Adds std:: to stl types (#049) (Closed)
Patch Set: remove dead using std::foo declarations. 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
« no previous file with comments | « net/quic/core/crypto/cert_compressor_test.cc ('k') | net/quic/core/crypto/crypto_framer_test.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
« no previous file with comments | « net/quic/core/crypto/cert_compressor_test.cc ('k') | net/quic/core/crypto/crypto_framer_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698