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

Unified Diff: net/tools/quic/quic_dispatcher_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/tools/quic/quic_dispatcher.cc ('k') | net/tools/quic/stateless_rejector_test.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/tools/quic/quic_dispatcher_test.cc
diff --git a/net/tools/quic/quic_dispatcher_test.cc b/net/tools/quic/quic_dispatcher_test.cc
index f7f901c47c423d7bd1dc68995d75e15c54ac8763..a8467befd730fb7b7ca7dc47a3684d0c66c5f262 100644
--- a/net/tools/quic/quic_dispatcher_test.cc
+++ b/net/tools/quic/quic_dispatcher_test.cc
@@ -46,7 +46,6 @@ using net::test::MockQuicConnection;
using net::test::MockQuicConnectionHelper;
using std::ostream;
using std::string;
-using std::vector;
using testing::CreateFunctor;
using testing::DoAll;
using testing::InSequence;
@@ -587,8 +586,8 @@ struct StatelessRejectTestParams {
};
// Constructs various test permutations for stateless rejects.
-vector<StatelessRejectTestParams> GetStatelessRejectTestParams() {
- vector<StatelessRejectTestParams> params;
+std::vector<StatelessRejectTestParams> GetStatelessRejectTestParams() {
+ std::vector<StatelessRejectTestParams> params;
for (bool enable_stateless_rejects_via_flag : {true, false}) {
for (bool client_supports_statelesss_rejects : {true, false}) {
for (bool crypto_handshake_successful : {true, false}) {
@@ -1083,8 +1082,8 @@ struct BufferedPacketStoreTestParams {
bool support_cheap_stateless_reject;
};
-vector<BufferedPacketStoreTestParams> GetBufferedPacketStoreTestParams() {
- vector<BufferedPacketStoreTestParams> params;
+std::vector<BufferedPacketStoreTestParams> GetBufferedPacketStoreTestParams() {
+ std::vector<BufferedPacketStoreTestParams> params;
for (bool enable_stateless_rejects_via_flag : {true, false}) {
for (bool support_cheap_stateless_reject : {true, false}) {
params.push_back(BufferedPacketStoreTestParams(
« no previous file with comments | « net/tools/quic/quic_dispatcher.cc ('k') | net/tools/quic/stateless_rejector_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698