Source release 19.3.0

This commit is contained in:
John W. Bruce
2024-09-05 07:02:36 +00:00
parent cd8256726f
commit 11c108a8da
122 changed files with 2259 additions and 1082 deletions

View File

@@ -1,7 +1,6 @@
// Copyright 2018 Google LLC. All Rights Reserved. This file and proprietary
// source code may only be used and distributed under the Widevine License
// Agreement.
#ifndef WVCDM_CORE_CONTENT_KEY_SESSION_H_
#define WVCDM_CORE_CONTENT_KEY_SESSION_H_
@@ -9,10 +8,15 @@
#include "metrics_collections.h"
#include "timer_metric.h"
#include "wv_class_utils.h"
namespace wvcdm {
class ContentKeySession : public KeySession {
public:
ContentKeySession() = delete;
WVCDM_DISALLOW_COPY_AND_MOVE(ContentKeySession);
ContentKeySession(RequestedSecurityLevel security_level,
CryptoSessionId oec_session_id,
metrics::CryptoMetrics* metrics)
@@ -87,8 +91,6 @@ class ContentKeySession : public KeySession {
CdmCipherMode cipher_mode_;
std::vector<uint8_t> key_handle_;
};
}; // class ContentKeySession
} // namespace wvcdm
#endif // WVCDM_CORE_CONTENT_KEY_SESSION_H_