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

Unified Diff: net/spdy/spdy_write_queue.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/spdy/spdy_stream_test_util.cc ('k') | net/ssl/channel_id_service.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/spdy/spdy_write_queue.cc
diff --git a/net/spdy/spdy_write_queue.cc b/net/spdy/spdy_write_queue.cc
index b49573cdd6a78c46a535052a190bf411e9b53c7e..cc0d787eaf85b825509bb99268a5ec33c4355dd7 100644
--- a/net/spdy/spdy_write_queue.cc
+++ b/net/spdy/spdy_write_queue.cc
@@ -117,7 +117,7 @@ void SpdyWriteQueue::RemovePendingWritesForStream(
}
queue->erase(out_it, queue->end());
removing_writes_ = false;
- STLDeleteElements(&erased_buffer_producers); // Invokes callbacks.
+ base::STLDeleteElements(&erased_buffer_producers); // Invokes callbacks.
}
void SpdyWriteQueue::RemovePendingWritesForStreamsAfter(
@@ -143,7 +143,7 @@ void SpdyWriteQueue::RemovePendingWritesForStreamsAfter(
queue->erase(out_it, queue->end());
}
removing_writes_ = false;
- STLDeleteElements(&erased_buffer_producers); // Invokes callbacks.
+ base::STLDeleteElements(&erased_buffer_producers); // Invokes callbacks.
}
void SpdyWriteQueue::Clear() {
@@ -159,7 +159,7 @@ void SpdyWriteQueue::Clear() {
queue_[i].clear();
}
removing_writes_ = false;
- STLDeleteElements(&erased_buffer_producers); // Invokes callbacks.
+ base::STLDeleteElements(&erased_buffer_producers); // Invokes callbacks.
}
} // namespace net
« no previous file with comments | « net/spdy/spdy_stream_test_util.cc ('k') | net/ssl/channel_id_service.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698