Source release 15.2.0
This commit is contained in:
@@ -15,7 +15,7 @@
|
||||
|
||||
namespace wvcdm {
|
||||
|
||||
typedef std::list<std::shared_ptr<CdmSession> > CdmSessionList;
|
||||
using CdmSessionList = std::list<std::shared_ptr<CdmSession> >;
|
||||
|
||||
// TODO(rfrias): Concurrency protection for this class has moved to CdmEngine.
|
||||
// Add it back when locks to control access to session usage and destruction
|
||||
@@ -43,8 +43,8 @@ class CdmSessionMap {
|
||||
void GetSessionList(CdmSessionList& sessions);
|
||||
|
||||
private:
|
||||
typedef std::map<CdmSessionId, std::shared_ptr<CdmSession> >
|
||||
CdmIdToSessionMap;
|
||||
using CdmIdToSessionMap =
|
||||
std::map<CdmSessionId, std::shared_ptr<CdmSession> >;
|
||||
|
||||
bool FindSessionNoLock(const CdmSessionId& session_id,
|
||||
std::shared_ptr<CdmSession>* session);
|
||||
|
||||
Reference in New Issue
Block a user