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

Unified Diff: net/tools/quic/quic_dispatcher.cc

Issue 2229393003: net: Use stl utilities from the base namespace (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased Created 4 years, 4 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_client.cc ('k') | net/tools/quic/quic_in_memory_cache.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/tools/quic/quic_dispatcher.cc
diff --git a/net/tools/quic/quic_dispatcher.cc b/net/tools/quic/quic_dispatcher.cc
index 6100b5909f8a377753f7fd0e31950ed3b9a1c9fb..994294d37aad0e68db33093b6fe9d4886840662a 100644
--- a/net/tools/quic/quic_dispatcher.cc
+++ b/net/tools/quic/quic_dispatcher.cc
@@ -211,8 +211,8 @@ QuicDispatcher::QuicDispatcher(
}
QuicDispatcher::~QuicDispatcher() {
- STLDeleteValues(&session_map_);
- STLDeleteElements(&closed_session_list_);
+ base::STLDeleteValues(&session_map_);
+ base::STLDeleteElements(&closed_session_list_);
}
void QuicDispatcher::InitializeWithWriter(QuicPacketWriter* writer) {
@@ -422,7 +422,7 @@ void QuicDispatcher::CleanUpSession(SessionMap::iterator it,
}
void QuicDispatcher::DeleteSessions() {
- STLDeleteElements(&closed_session_list_);
+ base::STLDeleteElements(&closed_session_list_);
}
void QuicDispatcher::OnCanWrite() {
« no previous file with comments | « net/tools/quic/quic_client.cc ('k') | net/tools/quic/quic_in_memory_cache.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698