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

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

Issue 2464683002: adds std:: to stl types (#049) (Closed)
Patch Set: 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/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..87da03fb0748a2da3591b850d0161043146ee2fd 100644
--- a/net/quic/core/quic_crypto_client_stream_test.cc
+++ b/net/quic/core/quic_crypto_client_stream_test.cc
@@ -171,7 +171,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();

Powered by Google App Engine
This is Rietveld 408576698