| Index: content/renderer/media/cdm_session_adapter.h
|
| diff --git a/content/renderer/media/cdm_session_adapter.h b/content/renderer/media/cdm_session_adapter.h
|
| index 35e060beba1cb03e81fbe327ee0fe9d4b96ae0f7..7e32669962268deb2e75cc79f5f76de5bddd8666 100644
|
| --- a/content/renderer/media/cdm_session_adapter.h
|
| +++ b/content/renderer/media/cdm_session_adapter.h
|
| @@ -88,6 +88,9 @@ class CdmSessionAdapter : public base::RefCounted<CdmSessionAdapter> {
|
| // after WebContentDecryptionModule is freed. http://crbug.com/330324
|
| media::Decryptor* GetDecryptor();
|
|
|
| + // Returns a prefix to use for UMAs.
|
| + const std::string& GetKeySystemUMAPrefix() const;
|
| +
|
| #if defined(ENABLE_BROWSER_CDMS)
|
| // Returns the CDM ID associated with the |media_keys_|. May be kInvalidCdmId
|
| // if no CDM ID is associated.
|
| @@ -125,6 +128,8 @@ class CdmSessionAdapter : public base::RefCounted<CdmSessionAdapter> {
|
| int cdm_id_;
|
| #endif
|
|
|
| + std::string key_system_uma_prefix_;
|
| +
|
| // NOTE: Weak pointers must be invalidated before all other member variables.
|
| base::WeakPtrFactory<CdmSessionAdapter> weak_ptr_factory_;
|
|
|
|
|