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

Unified Diff: net/quic/core/quic_crypto_client_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_buffered_packet_store_test.cc ('k') | net/quic/core/quic_crypto_server_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_client_stream_test.cc
diff --git a/net/quic/core/quic_crypto_client_stream_test.cc b/net/quic/core/quic_crypto_client_stream_test.cc
index 78fd65033d6449c8ebf2ebb9392f5302633cb628..6c2d0daa81371636cfe4206edad79046f1ca2550 100644
--- a/net/quic/core/quic_crypto_client_stream_test.cc
+++ b/net/quic/core/quic_crypto_client_stream_test.cc
@@ -22,7 +22,6 @@
#include "testing/gtest/include/gtest/gtest.h"
using std::string;
-using std::vector;
using testing::_;
@@ -171,7 +170,7 @@ TEST_F(QuicCryptoClientStreamTest, InvalidCachedServerConfig) {
QuicCryptoClientConfig::CachedState* state =
crypto_config_.LookupOrCreate(server_id_);
- vector<string> certs = state->certs();
+ std::vector<string> certs = state->certs();
string cert_sct = state->cert_sct();
string signature = state->signature();
string chlo_hash = state->chlo_hash();
« no previous file with comments | « net/quic/core/quic_buffered_packet_store_test.cc ('k') | net/quic/core/quic_crypto_server_stream_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698