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

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

Issue 2512833002: adds std:: to stl types (Closed)
Patch Set: Created 4 years, 1 month 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_framer_test.cc ('k') | net/quic/test_tools/simple_quic_framer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/core/quic_sent_packet_manager_test.cc
diff --git a/net/quic/core/quic_sent_packet_manager_test.cc b/net/quic/core/quic_sent_packet_manager_test.cc
index de79cb661168e6232175cb0cce4da1053a0a5d74..d3b34850b8198a173099ca3f3a4f889a48115c17 100644
--- a/net/quic/core/quic_sent_packet_manager_test.cc
+++ b/net/quic/core/quic_sent_packet_manager_test.cc
@@ -68,8 +68,8 @@ struct TestParams {
bool missing;
};
-vector<TestParams> GetTestParams() {
- vector<TestParams> params;
+std::vector<TestParams> GetTestParams() {
+ std::vector<TestParams> params;
for (bool missing : {true, false}) {
params.push_back(TestParams(missing));
}
@@ -169,11 +169,11 @@ class QuicSentPacketManagerTest : public ::testing::TestWithParam<TestParams> {
size_t num_packets_acked,
QuicPacketNumber* packets_lost,
size_t num_packets_lost) {
- vector<QuicPacketNumber> ack_vector;
+ std::vector<QuicPacketNumber> ack_vector;
for (size_t i = 0; i < num_packets_acked; ++i) {
ack_vector.push_back(packets_acked[i]);
}
- vector<QuicPacketNumber> lost_vector;
+ std::vector<QuicPacketNumber> lost_vector;
for (size_t i = 0; i < num_packets_lost; ++i) {
lost_vector.push_back(packets_lost[i]);
}
« no previous file with comments | « net/quic/core/quic_framer_test.cc ('k') | net/quic/test_tools/simple_quic_framer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698