]> git.sesse.net Git - casparcg/blobdiff - dependencies64/cef/linux/include/cef_web_plugin.h
Upgrade CEF to 3.3029.1611.g44e39a8 / Chromium 58.0.3029.81.
[casparcg] / dependencies64 / cef / linux / include / cef_web_plugin.h
similarity index 57%
rename from dependencies64/cef/include/cef_web_plugin.h
rename to dependencies64/cef/linux/include/cef_web_plugin.h
index 0ff2b8ea10011cbaaada98eec4dd740f38944635..3eea5413047cd5c523552a4e0cd94e1a47cc12a3 100644 (file)
 #define CEF_INCLUDE_CEF_WEB_PLUGIN_H_
 
 #include "include/cef_base.h"
-#include "include/cef_browser.h"
+
+class CefBrowser;
 
 ///
 // Information about a specific web plugin.
 ///
 /*--cef(source=library)--*/
-class CefWebPluginInfo : public virtual CefBase {
+class CefWebPluginInfo : public virtual CefBaseRefCounted {
  public:
   ///
   // Returns the plugin name (i.e. Flash).
@@ -76,7 +77,7 @@ class CefWebPluginInfo : public virtual CefBase {
 // this class will be called on the browser process UI thread.
 ///
 /*--cef(source=client)--*/
-class CefWebPluginInfoVisitor : public virtual CefBase {
+class CefWebPluginInfoVisitor : public virtual CefBaseRefCounted {
  public:
   ///
   // Method that will be called once for each plugin. |count| is the 0-based
@@ -103,30 +104,6 @@ void CefVisitWebPluginInfo(CefRefPtr<CefWebPluginInfoVisitor> visitor);
 /*--cef()--*/
 void CefRefreshWebPlugins();
 
-///
-// Add a plugin path (directory + file). This change may not take affect until
-// after CefRefreshWebPlugins() is called. Can be called on any thread in the
-// browser process.
-///
-/*--cef()--*/
-void CefAddWebPluginPath(const CefString& path);
-
-///
-// Add a plugin directory. This change may not take affect until after
-// CefRefreshWebPlugins() is called. Can be called on any thread in the browser
-// process.
-///
-/*--cef()--*/
-void CefAddWebPluginDirectory(const CefString& dir);
-
-///
-// Remove a plugin path (directory + file). This change may not take affect
-// until after CefRefreshWebPlugins() is called. Can be called on any thread in
-// the browser process.
-///
-/*--cef()--*/
-void CefRemoveWebPluginPath(const CefString& path);
-
 ///
 // Unregister an internal plugin. This may be undone the next time
 // CefRefreshWebPlugins() is called. Can be called on any thread in the browser
@@ -135,13 +112,6 @@ void CefRemoveWebPluginPath(const CefString& path);
 /*--cef()--*/
 void CefUnregisterInternalWebPlugin(const CefString& path);
 
-///
-// Force a plugin to shutdown. Can be called on any thread in the browser
-// process but will be executed on the IO thread.
-///
-/*--cef()--*/
-void CefForceWebPluginShutdown(const CefString& path);
-
 ///
 // Register a plugin crash. Can be called on any thread in the browser process
 // but will be executed on the IO thread.
@@ -154,7 +124,7 @@ void CefRegisterWebPluginCrash(const CefString& path);
 // of this class will be called on the browser process IO thread.
 ///
 /*--cef(source=client)--*/
-class CefWebPluginUnstableCallback : public virtual CefBase {
+class CefWebPluginUnstableCallback : public virtual CefBaseRefCounted {
  public:
   ///
   // Method that will be called for the requested plugin. |unstable| will be
@@ -174,5 +144,71 @@ class CefWebPluginUnstableCallback : public virtual CefBase {
 void CefIsWebPluginUnstable(const CefString& path,
                             CefRefPtr<CefWebPluginUnstableCallback> callback);
 
+///
+// Implement this interface to receive notification when CDM registration is
+// complete. The methods of this class will be called on the browser process
+// UI thread.
+///
+/*--cef(source=client)--*/
+class CefRegisterCdmCallback : public virtual CefBaseRefCounted {
+ public:
+  ///
+  // Method that will be called when CDM registration is complete. |result|
+  // will be CEF_CDM_REGISTRATION_ERROR_NONE if registration completed
+  // successfully. Otherwise, |result| and |error_message| will contain
+  // additional information about why registration failed.
+  ///
+  /*--cef(optional_param=error_message)--*/
+  virtual void OnCdmRegistrationComplete(cef_cdm_registration_error_t result,
+                                         const CefString& error_message) =0;
+};
+
+///
+// Register the Widevine CDM plugin.
+//
+// The client application is responsible for downloading an appropriate
+// platform-specific CDM binary distribution from Google, extracting the
+// contents, and building the required directory structure on the local machine.
+// The CefBrowserHost::StartDownload method and CefZipArchive class can be used
+// to implement this functionality in CEF. Contact Google via
+// https://www.widevine.com/contact.html for details on CDM download.
+//
+// |path| is a directory that must contain the following files:
+//   1. manifest.json file from the CDM binary distribution (see below).
+//   2. widevinecdm file from the CDM binary distribution (e.g.
+//      widevinecdm.dll on on Windows, libwidevinecdm.dylib on OS X,
+//      libwidevinecdm.so on Linux).
+//   3. widevidecdmadapter file from the CEF binary distribution (e.g.
+//      widevinecdmadapter.dll on Windows, widevinecdmadapter.plugin on OS X,
+//      libwidevinecdmadapter.so on Linux).
+//
+// If any of these files are missing or if the manifest file has incorrect
+// contents the registration will fail and |callback| will receive a |result|
+// value of CEF_CDM_REGISTRATION_ERROR_INCORRECT_CONTENTS.
+//
+// The manifest.json file must contain the following keys:
+//   A. "os": Supported OS (e.g. "mac", "win" or "linux").
+//   B. "arch": Supported architecture (e.g. "ia32" or "x64").
+//   C. "x-cdm-module-versions": Module API version (e.g. "4").
+//   D. "x-cdm-interface-versions": Interface API version (e.g. "8").
+//   E. "x-cdm-host-versions": Host API version (e.g. "8").
+//   F. "version": CDM version (e.g. "1.4.8.903").
+//   G. "x-cdm-codecs": List of supported codecs (e.g. "vp8,vp9.0,avc1").
+//
+// A through E are used to verify compatibility with the current Chromium
+// version. If the CDM is not compatible the registration will fail and
+// |callback| will receive a |result| value of
+// CEF_CDM_REGISTRATION_ERROR_INCOMPATIBLE.
+//
+// |callback| will be executed asynchronously once registration is complete.
+//
+// On Linux this function must be called before CefInitialize() and the
+// registration cannot be changed during runtime. If registration is not
+// supported at the time that CefRegisterWidevineCdm() is called then |callback|
+// will receive a |result| value of CEF_CDM_REGISTRATION_ERROR_NOT_SUPPORTED.
+///
+/*--cef(optional_param=callback)--*/
+void CefRegisterWidevineCdm(const CefString& path,
+                            CefRefPtr<CefRegisterCdmCallback> callback);
 
 #endif  // CEF_INCLUDE_CEF_WEB_PLUGIN_H_