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

Unified Diff: media/cdm/aes_decryptor.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/cast/test/end2end_unittest.cc ('k') | media/cdm/player_tracker_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/cdm/aes_decryptor.cc
diff --git a/media/cdm/aes_decryptor.cc b/media/cdm/aes_decryptor.cc
index f8e12e5b3e39bee068a68b27b9dd8e0857f16d0a..918d9de79a93d61874ff8ba19298ad17c47bc9a4 100644
--- a/media/cdm/aes_decryptor.cc
+++ b/media/cdm/aes_decryptor.cc
@@ -41,7 +41,7 @@ class AesDecryptor::SessionIdDecryptionKeyMap {
public:
SessionIdDecryptionKeyMap() {}
- ~SessionIdDecryptionKeyMap() { STLDeleteValues(&key_list_); }
+ ~SessionIdDecryptionKeyMap() { base::STLDeleteValues(&key_list_); }
// Replaces value if |session_id| is already present, or adds it if not.
// This |decryption_key| becomes the latest until another insertion or
« no previous file with comments | « media/cast/test/end2end_unittest.cc ('k') | media/cdm/player_tracker_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698