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

Unified Diff: net/quic/core/quic_crypto_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_server_stream_test.cc ('k') | net/quic/core/quic_data_writer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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..21774d900f9465fd338238db06a38a89e7b5f1d9 100644
--- a/net/quic/core/quic_crypto_stream_test.cc
+++ b/net/quic/core/quic_crypto_stream_test.cc
@@ -19,7 +19,6 @@
#include "testing/gtest/include/gtest/gtest.h"
using std::string;
-using std::vector;
namespace net {
namespace test {
@@ -34,10 +33,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);
};
« no previous file with comments | « net/quic/core/quic_crypto_server_stream_test.cc ('k') | net/quic/core/quic_data_writer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698