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

Unified Diff: net/quic/core/quic_framer_test.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/quic_framer.cc ('k') | net/quic/core/quic_multipath_received_packet_manager.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/core/quic_framer_test.cc
diff --git a/net/quic/core/quic_framer_test.cc b/net/quic/core/quic_framer_test.cc
index 205ea06b1dd198fd3954202bc7261181696e60dd..d8597ad415fd7f1e31a363b12e10eae9e3acdbad 100644
--- a/net/quic/core/quic_framer_test.cc
+++ b/net/quic/core/quic_framer_test.cc
@@ -199,12 +199,12 @@ class TestQuicVisitor : public QuicFramerVisitorInterface {
accept_public_header_(true) {}
~TestQuicVisitor() override {
- STLDeleteElements(&stream_frames_);
- STLDeleteElements(&ack_frames_);
- STLDeleteElements(&stop_waiting_frames_);
- STLDeleteElements(&padding_frames_);
- STLDeleteElements(&ping_frames_);
- STLDeleteElements(&stream_data_);
+ base::STLDeleteElements(&stream_frames_);
+ base::STLDeleteElements(&ack_frames_);
+ base::STLDeleteElements(&stop_waiting_frames_);
+ base::STLDeleteElements(&padding_frames_);
+ base::STLDeleteElements(&ping_frames_);
+ base::STLDeleteElements(&stream_data_);
}
void OnError(QuicFramer* f) override {
« no previous file with comments | « net/quic/core/quic_framer.cc ('k') | net/quic/core/quic_multipath_received_packet_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698