|
21 | 21 | #include "Internals/CefSharpApp.h"
|
22 | 22 | #include "Internals/CefWebPluginInfoVisitorAdapter.h"
|
23 | 23 | #include "Internals/CefTaskScheduler.h"
|
24 |
| -#include "Internals/CefRegisterCdmCallbackAdapter.h" |
25 | 24 | #include "CookieManager.h"
|
26 | 25 | #include "CefSettingsBase.h"
|
27 | 26 | #include "RequestContext.h"
|
@@ -773,75 +772,6 @@ namespace CefSharp
|
773 | 772 | return cef_get_min_log_level();
|
774 | 773 | }
|
775 | 774 |
|
776 |
| - /// <summary> |
777 |
| - /// Register the Widevine CDM plugin. |
778 |
| - /// |
779 |
| - /// The client application is responsible for downloading an appropriate |
780 |
| - /// platform-specific CDM binary distribution from Google, extracting the |
781 |
| - /// contents, and building the required directory structure on the local machine. |
782 |
| - /// The <see cref="CefSharp::IBrowserHost::StartDownload"/> method class can be used |
783 |
| - /// to implement this functionality in CefSharp. Contact Google via |
784 |
| - /// https://www.widevine.com/contact.html for details on CDM download. |
785 |
| - /// |
786 |
| - /// |
787 |
| - /// path is a directory that must contain the following files: |
788 |
| - /// 1. manifest.json file from the CDM binary distribution (see below). |
789 |
| - /// 2. widevinecdm file from the CDM binary distribution (e.g. |
790 |
| - /// widevinecdm.dll on Windows). |
791 |
| - /// 3. widevidecdmadapter file from the CEF binary distribution (e.g. |
792 |
| - /// widevinecdmadapter.dll on Windows). |
793 |
| - /// |
794 |
| - /// If any of these files are missing or if the manifest file has incorrect |
795 |
| - /// contents the registration will fail and callback will receive an ErrorCode |
796 |
| - /// value of <see cref="CefSharp::CdmRegistrationErrorCode::IncorrectContents"/>. |
797 |
| - /// |
798 |
| - /// The manifest.json file must contain the following keys: |
799 |
| - /// A. "os": Supported OS (e.g. "mac", "win" or "linux"). |
800 |
| - /// B. "arch": Supported architecture (e.g. "ia32" or "x64"). |
801 |
| - /// C. "x-cdm-module-versions": Module API version (e.g. "4"). |
802 |
| - /// D. "x-cdm-interface-versions": Interface API version (e.g. "8"). |
803 |
| - /// E. "x-cdm-host-versions": Host API version (e.g. "8"). |
804 |
| - /// F. "version": CDM version (e.g. "1.4.8.903"). |
805 |
| - /// G. "x-cdm-codecs": List of supported codecs (e.g. "vp8,vp9.0,avc1"). |
806 |
| - /// |
807 |
| - /// A through E are used to verify compatibility with the current Chromium |
808 |
| - /// version. If the CDM is not compatible the registration will fail and |
809 |
| - /// callback will receive an ErrorCode value of <see cref="CdmRegistrationErrorCode::Incompatible"/>. |
810 |
| - /// |
811 |
| - /// If registration is not supported at the time that Cef.RegisterWidevineCdm() is called then callback |
812 |
| - /// will receive an ErrorCode value of <see cref="CdmRegistrationErrorCode::NotSupported"/>. |
813 |
| - /// </summary> |
814 |
| - /// <param name="path"> is a directory that contains the Widevine CDM files</param> |
815 |
| - /// <param name="callback">optional callback - <see cref="IRegisterCdmCallback::OnRegistrationComplete"/> |
816 |
| - /// will be executed asynchronously once registration is complete</param> |
817 |
| - static void RegisterWidevineCdm(String^ path, [Optional] IRegisterCdmCallback^ callback) |
818 |
| - { |
819 |
| - CefRefPtr<CefRegisterCdmCallbackAdapter> adapter = nullptr; |
820 |
| - |
821 |
| - if (callback != nullptr) |
822 |
| - { |
823 |
| - adapter = new CefRegisterCdmCallbackAdapter(callback); |
824 |
| - } |
825 |
| - |
826 |
| - CefRegisterWidevineCdm(StringUtils::ToNative(path), adapter); |
827 |
| - } |
828 |
| - |
829 |
| - /// <summary> |
830 |
| - /// Register the Widevine CDM plugin. |
831 |
| - /// |
832 |
| - /// See <see cref="RegisterWidevineCdm(String, IRegisterCdmCallback)"/> for more details. |
833 |
| - /// </summary> |
834 |
| - /// <param name="path"> is a directory that contains the Widevine CDM files</param> |
835 |
| - /// <returns>Returns a Task that can be awaited to receive the <see cref="CdmRegistration"/> response.</returns> |
836 |
| - static Task<CdmRegistration^>^ RegisterWidevineCdmAsync(String^ path) |
837 |
| - { |
838 |
| - auto callback = gcnew TaskRegisterCdmCallback(); |
839 |
| - |
840 |
| - RegisterWidevineCdm(path, callback); |
841 |
| - |
842 |
| - return callback->Task; |
843 |
| - } |
844 |
| - |
845 | 775 | /// <summary>
|
846 | 776 | /// Returns the mime type for the specified file extension or an empty string if unknown.
|
847 | 777 | /// </summary>
|
|
0 commit comments