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

Unified Diff: net/quic/platform/impl/quic_containers_impl.h

Issue 2825853002: Improvements to uses of base::SmallMap (Closed)
Patch Set: Review comments Created 3 years, 8 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 | « ipc/ipc_message_utils_unittest.cc ('k') | storage/browser/blob/blob_memory_controller.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/platform/impl/quic_containers_impl.h
diff --git a/net/quic/platform/impl/quic_containers_impl.h b/net/quic/platform/impl/quic_containers_impl.h
index 287b73b3216db7588dfbe84098cc539f5ccb5c93..360ae4c28bcf378bb4e0a1a770d4b6c0ad28292e 100644
--- a/net/quic/platform/impl/quic_containers_impl.h
+++ b/net/quic/platform/impl/quic_containers_impl.h
@@ -21,7 +21,7 @@ using QuicLinkedHashMapImpl = linked_hash_map<Key, Value>;
// unique key-value-pair elements, and upgrades itself to unordered_map when
// runs out of space.
template <typename Key, typename Value, int Size>
-using QuicSmallMapImpl = base::SmallMap<std::unordered_map<Key, Value>, Size>;
+using QuicSmallMapImpl = base::small_map<std::unordered_map<Key, Value>, Size>;
// A data structure used to represent a sorted set of non-empty, non-adjacent,
// and mutually disjoint intervals.
« no previous file with comments | « ipc/ipc_message_utils_unittest.cc ('k') | storage/browser/blob/blob_memory_controller.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698