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

Unified Diff: net/quic/core/quic_crypto_server_stream_test.cc

Issue 2464683002: 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/quic_crypto_client_stream_test.cc ('k') | net/quic/core/quic_crypto_stream_test.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/core/quic_crypto_server_stream_test.cc
diff --git a/net/quic/core/quic_crypto_server_stream_test.cc b/net/quic/core/quic_crypto_server_stream_test.cc
index 483bcd813e6ed3bf0a3caec923aa6bd244466239..d853f05d8368dd1443c94c6ee72bbbd7bdb59160 100644
--- a/net/quic/core/quic_crypto_server_stream_test.cc
+++ b/net/quic/core/quic_crypto_server_stream_test.cc
@@ -34,7 +34,6 @@ class QuicConnection;
class ReliableQuicStream;
} // namespace net
-using std::pair;
using std::string;
using testing::_;
@@ -372,9 +371,10 @@ TEST_P(QuicCryptoServerStreamTest, ZeroRTT) {
// Advance the handshake. Expect that the server will be stuck waiting for
// client nonce verification to complete.
- pair<size_t, size_t> messages_moved = CryptoTestUtils::AdvanceHandshake(
- client_connection_, client_stream(), 0, server_connection_,
- server_stream(), 0);
+ std::pair<size_t, size_t> messages_moved =
+ CryptoTestUtils::AdvanceHandshake(client_connection_, client_stream(),
+ 0, server_connection_,
+ server_stream(), 0);
EXPECT_EQ(1u, messages_moved.first);
EXPECT_EQ(0u, messages_moved.second);
EXPECT_EQ(1, strike_register_client_->PendingVerifications());
« no previous file with comments | « net/quic/core/quic_crypto_client_stream_test.cc ('k') | net/quic/core/quic_crypto_stream_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698