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

Unified Diff: net/quic/core/quic_crypto_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_stream_test.cc
diff --git a/net/quic/core/quic_crypto_stream_test.cc b/net/quic/core/quic_crypto_stream_test.cc
index 4485ee881dcebeee83955d2121197a48fcd40772..e270243ee0ea3f466d444be376972bbc80e0d039 100644
--- a/net/quic/core/quic_crypto_stream_test.cc
+++ b/net/quic/core/quic_crypto_stream_test.cc
@@ -34,10 +34,10 @@ class MockQuicCryptoStream : public QuicCryptoStream {
messages_.push_back(message);
}
- vector<CryptoHandshakeMessage>* messages() { return &messages_; }
+ std::vector<CryptoHandshakeMessage>* messages() { return &messages_; }
private:
- vector<CryptoHandshakeMessage> messages_;
+ std::vector<CryptoHandshakeMessage> messages_;
DISALLOW_COPY_AND_ASSIGN(MockQuicCryptoStream);
};

Powered by Google App Engine
This is Rietveld 408576698