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

Unified Diff: media/filters/h264_parser.cc

Issue 2234753002: media: 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 | « media/filters/gpu_video_decoder.cc ('k') | media/filters/media_source_state.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/filters/h264_parser.cc
diff --git a/media/filters/h264_parser.cc b/media/filters/h264_parser.cc
index a70afcc84ba84fcdd3ffcd44a2e3b4c32c4e2e95..a1118d28742f298d04d9c0217f73fa76ff0d7cbe 100644
--- a/media/filters/h264_parser.cc
+++ b/media/filters/h264_parser.cc
@@ -126,8 +126,8 @@ H264Parser::H264Parser() {
}
H264Parser::~H264Parser() {
- STLDeleteValues(&active_SPSes_);
- STLDeleteValues(&active_PPSes_);
+ base::STLDeleteValues(&active_SPSes_);
+ base::STLDeleteValues(&active_PPSes_);
}
void H264Parser::Reset() {
« no previous file with comments | « media/filters/gpu_video_decoder.cc ('k') | media/filters/media_source_state.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698