summaryrefslogtreecommitdiff
path: root/libcef/common/cdm_host_file_path.h
diff options
context:
space:
mode:
Diffstat (limited to 'libcef/common/cdm_host_file_path.h')
-rw-r--r--libcef/common/cdm_host_file_path.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/libcef/common/cdm_host_file_path.h b/libcef/common/cdm_host_file_path.h
new file mode 100644
index 00000000..4a41e696
--- /dev/null
+++ b/libcef/common/cdm_host_file_path.h
@@ -0,0 +1,20 @@
+// Copyright 2022 The Chromium Embedded Framework Authors. Portions Copyright
+// 2017 The Chromium Authors. Use of this source code is governed by a BSD-style
+// license that can be found in the LICENSE file.
+
+#ifndef CEF_LIBCEF_COMMON_CDM_HOST_FILE_PATH_H_
+#define CEF_LIBCEF_COMMON_CDM_HOST_FILE_PATH_H_
+
+#include <vector>
+
+#include "media/cdm/cdm_host_file.h"
+
+namespace cef {
+
+// Gets a list of CDM host file paths and put them in |cdm_host_file_paths|.
+void AddCdmHostFilePaths(
+ std::vector<media::CdmHostFilePath>* cdm_host_file_paths);
+
+} // namespace cef
+
+#endif // CEF_LIBCEF_COMMON_CDM_HOST_FILE_PATH_H_