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

Unified Diff: net/quic/test_tools/quic_framer_peer.cc

Issue 2651673004: Add quic_map_util. (Closed)
Patch Set: Created 3 years, 11 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/platform/impl/quic_map_util_impl.h ('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 9c873f7a21ab5232c09fd08c1a9db271d1ae1db4..09103c1a7a54cfe4e5cf4c314c74f18318c59caf 100644
--- a/net/quic/test_tools/quic_framer_peer.cc
+++ b/net/quic/test_tools/quic_framer_peer.cc
@@ -4,9 +4,9 @@
#include "net/quic/test_tools/quic_framer_peer.h"
-#include "base/stl_util.h"
#include "net/quic/core/quic_framer.h"
#include "net/quic/core/quic_packets.h"
+#include "net/quic/platform/api/quic_map_util.h"
namespace net {
namespace test {
@@ -84,7 +84,7 @@ QuicPathId QuicFramerPeer::GetLastPathId(QuicFramer* framer) {
// static
bool QuicFramerPeer::IsPathClosed(QuicFramer* framer, QuicPathId path_id) {
- return base::ContainsKey(framer->closed_paths_, path_id);
+ return QuicContainsKey(framer->closed_paths_, path_id);
}
} // namespace test
« no previous file with comments | « net/quic/platform/impl/quic_map_util_impl.h ('k') | net/quic/test_tools/quic_session_peer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698