From 3707ffffee703967887ed07dc5a90ac42d39d04c Mon Sep 17 00:00:00 2001 From: Lu Chen Date: Tue, 15 Sep 2020 09:48:33 -0700 Subject: [PATCH] Add EMMG to carry fingerprinting and service blocking info --- common/certificate_type.h | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 common/certificate_type.h diff --git a/common/certificate_type.h b/common/certificate_type.h new file mode 100644 index 0000000..1d07166 --- /dev/null +++ b/common/certificate_type.h @@ -0,0 +1,16 @@ +// Copyright 2017 Google LLC. All rights reserved. + +#ifndef VIDEO_WIDEVINE_EXPORT_COMMON_CERTIFICATE_TYPE_H_ +#define VIDEO_WIDEVINE_EXPORT_COMMON_CERTIFICATE_TYPE_H_ + +namespace video_widevine { + +enum CertificateType { + kCertificateTypeTesting, + kCertificateTypeDevelopment, + kCertificateTypeProduction, +}; + +} // namespace video_widevine + +#endif // VIDEO_WIDEVINE_EXPORT_COMMON_CERTIFICATE_TYPE_H_