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

Unified Diff: net/quic/test_tools/quic_framer_peer.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/quic/core/spdy_utils.cc ('k') | net/quic/test_tools/quic_session_peer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/test_tools/quic_framer_peer.cc
diff --git a/net/quic/test_tools/quic_framer_peer.cc b/net/quic/test_tools/quic_framer_peer.cc
index 25e281f72b36cee9b3f02b771e2d9b64c3873c8e..42bd17ca8dfc030ad5d5f818589b4b4cc81ca0e7 100644
--- a/net/quic/test_tools/quic_framer_peer.cc
+++ b/net/quic/test_tools/quic_framer_peer.cc
@@ -78,7 +78,7 @@ QuicPathId QuicFramerPeer::GetLastPathId(QuicFramer* framer) {
// static
bool QuicFramerPeer::IsPathClosed(QuicFramer* framer, QuicPathId path_id) {
- return ContainsKey(framer->closed_paths_, path_id);
+ return base::ContainsKey(framer->closed_paths_, path_id);
}
} // namespace test
« no previous file with comments | « net/quic/core/spdy_utils.cc ('k') | net/quic/test_tools/quic_session_peer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698