Index: chrome/common/chrome_content_client.cc |
diff --git a/chrome/common/chrome_content_client.cc b/chrome/common/chrome_content_client.cc |
index 4255c1b6664da68748e9ba36aba82aa990b25221..31cd1cc367c0813c9244540053a86cbe286c83a5 100644 |
--- a/chrome/common/chrome_content_client.cc |
+++ b/chrome/common/chrome_content_client.cc |
@@ -85,6 +85,10 @@ |
#include "chrome/common/widevine_cdm_constants.h" |
#endif |
+#if BUILDFLAG(ENABLE_PEPPER_CDMS) |
+#include "chrome/common/media/cdm_host_file_path.h" |
+#endif |
+ |
#if defined(OS_ANDROID) |
#include "chrome/common/chrome_media_client_android.h" |
#endif |
@@ -556,6 +560,13 @@ void ChromeContentClient::AddContentDecryptionModules( |
// TODO(jrummell): Add External Clear Key CDM for testing, if it's available. |
} |
+#if BUILDFLAG(ENABLE_PEPPER_CDMS) |
+void ChromeContentClient::AddContentDecryptionModuleHostFilePaths( |
+ std::vector<content::CdmHostFilePath>* cdm_host_file_paths) { |
+ chrome::AddCdmHostFilePaths(cdm_host_file_paths); |
+} |
+#endif |
+ |
static const char* const kChromeStandardURLSchemes[] = { |
extensions::kExtensionScheme, |
chrome::kChromeNativeScheme, |