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

Unified Diff: net/quic/core/quic_session.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_received_packet_manager_test.cc ('k') | net/quic/core/quic_session_test.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/core/quic_session.cc
diff --git a/net/quic/core/quic_session.cc b/net/quic/core/quic_session.cc
index a10c124c05f154f229e2c60a7a1d0a6181844189..6c3add0cfefdb7fceabd0a8db168b7cba149e077 100644
--- a/net/quic/core/quic_session.cc
+++ b/net/quic/core/quic_session.cc
@@ -18,10 +18,8 @@
using base::IntToString;
using base::StringPiece;
using std::make_pair;
-using std::map;
using std::max;
using std::string;
-using std::vector;
using net::SpdyPriority;
namespace net {
@@ -398,7 +396,7 @@ void QuicSession::CloseStreamInner(QuicStreamId stream_id, bool locally_reset) {
void QuicSession::UpdateFlowControlOnFinalReceivedByteOffset(
QuicStreamId stream_id,
QuicStreamOffset final_byte_offset) {
- map<QuicStreamId, QuicStreamOffset>::iterator it =
+ std::map<QuicStreamId, QuicStreamOffset>::iterator it =
locally_closed_streams_highest_offset_.find(stream_id);
if (it == locally_closed_streams_highest_offset_.end()) {
return;
« no previous file with comments | « net/quic/core/quic_received_packet_manager_test.cc ('k') | net/quic/core/quic_session_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698