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

Unified Diff: net/spdy/http2_write_scheduler.h

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/socket/client_socket_pool_manager_impl.cc ('k') | net/spdy/spdy_read_queue.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/spdy/http2_write_scheduler.h
diff --git a/net/spdy/http2_write_scheduler.h b/net/spdy/http2_write_scheduler.h
index 1fd29620e8fcb3bc361d739e0fad18bd989bfc4b..ef72e929e6f1cf8ee1d360aa337ef6be59797ec8 100644
--- a/net/spdy/http2_write_scheduler.h
+++ b/net/spdy/http2_write_scheduler.h
@@ -168,7 +168,7 @@ class Http2PriorityWriteScheduler : public WriteScheduler<StreamIdType> {
StreamInfo* root_stream_info_;
// Maps from stream IDs to StreamInfo objects.
StreamInfoMap all_stream_infos_;
- STLValueDeleter<StreamInfoMap> all_stream_infos_deleter_;
+ base::STLValueDeleter<StreamInfoMap> all_stream_infos_deleter_;
// Queue containing all ready streams, ordered with streams of higher
// priority before streams of lower priority, and, among streams of equal
// priority, streams with lower ordinal before those with higher
@@ -207,7 +207,7 @@ int Http2PriorityWriteScheduler<StreamIdType>::num_streams() const {
template <typename StreamIdType>
bool Http2PriorityWriteScheduler<StreamIdType>::StreamRegistered(
StreamIdType stream_id) const {
- return ContainsKey(all_stream_infos_, stream_id);
+ return base::ContainsKey(all_stream_infos_, stream_id);
}
template <typename StreamIdType>
« no previous file with comments | « net/socket/client_socket_pool_manager_impl.cc ('k') | net/spdy/spdy_read_queue.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698