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

Unified Diff: content/browser/renderer_host/media/video_capture_buffer_pool.cc

Issue 2228403003: content: 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
Index: content/browser/renderer_host/media/video_capture_buffer_pool.cc
diff --git a/content/browser/renderer_host/media/video_capture_buffer_pool.cc b/content/browser/renderer_host/media/video_capture_buffer_pool.cc
index 8b6d875be71c99d9968abd14915ff36cdd416960..d484ae7cbc76b4a9ae70a0b3ec9ddd30b2d1015d 100644
--- a/content/browser/renderer_host/media/video_capture_buffer_pool.cc
+++ b/content/browser/renderer_host/media/video_capture_buffer_pool.cc
@@ -250,7 +250,7 @@ VideoCaptureBufferPool::VideoCaptureBufferPool(int count)
}
VideoCaptureBufferPool::~VideoCaptureBufferPool() {
- STLDeleteValues(&trackers_);
+ base::STLDeleteValues(&trackers_);
}
bool VideoCaptureBufferPool::ShareToProcess(

Powered by Google App Engine
This is Rietveld 408576698