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

Unified Diff: media/cdm/aes_decryptor.h

Issue 1099383002: Change ScopedPtrHashMap's 2nd template parameter (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix build after rebase Created 5 years, 8 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: media/cdm/aes_decryptor.h
diff --git a/media/cdm/aes_decryptor.h b/media/cdm/aes_decryptor.h
index 5c7a06c2cc44a39af31bf2a4e649e5086dd1a01e..3515722cf21da93707482b207f1e03eb594fdabb 100644
--- a/media/cdm/aes_decryptor.h
+++ b/media/cdm/aes_decryptor.h
@@ -114,7 +114,8 @@ class MEDIA_EXPORT AesDecryptor : public MediaKeys,
class SessionIdDecryptionKeyMap;
// Key ID <-> SessionIdDecryptionKeyMap map.
- typedef base::ScopedPtrHashMap<std::string, SessionIdDecryptionKeyMap>
+ typedef base::ScopedPtrHashMap<std::string,
+ scoped_ptr<SessionIdDecryptionKeyMap>>
KeyIdToSessionKeysMap;
// Creates a DecryptionKey using |key_string| and associates it with |key_id|.

Powered by Google App Engine
This is Rietveld 408576698