Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(49)

Unified Diff: content/common/media/cdm_host_files.h

Issue 2849163003: media: Move the callsite of CdmHostFiles::InitVerification() (Closed)
Patch Set: windows-only Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | content/common/media/cdm_host_files.cc » ('j') | content/ppapi_plugin/ppapi_thread.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/media/cdm_host_files.h
diff --git a/content/common/media/cdm_host_files.h b/content/common/media/cdm_host_files.h
index 75430d556c9a3454328765b714696368d2801423..48311c1fa91fd9baaeed223ce35d87ccb1e4c5e0 100644
--- a/content/common/media/cdm_host_files.h
+++ b/content/common/media/cdm_host_files.h
@@ -59,15 +59,15 @@ class CdmHostFiles {
static std::unique_ptr<CdmHostFiles> Create(
const base::FilePath& cdm_adapter_path);
- // Verifies |cdm_adapter_path| CDM files by calling the function exported
+ // Initializes the verification of CDM files by calling the function exported
// by the CDM. If unexpected error happens, all files will be closed.
// Otherwise, the PlatformFiles are passed to the CDM which will close the
// files later.
// Only returns false if the CDM returns false (when there's an immediate
// failure). Otherwise always returns true for backward compatibility, e.g.
// when using an old CDM which doesn't implement the verification API.
- bool VerifyFiles(base::NativeLibrary cdm_adapter_library,
- const base::FilePath& cdm_adapter_path);
+ bool InitVerification(base::NativeLibrary cdm_adapter_library,
+ const base::FilePath& cdm_adapter_path);
private:
#if defined(POSIX_WITH_ZYGOTE)
« no previous file with comments | « no previous file | content/common/media/cdm_host_files.cc » ('j') | content/ppapi_plugin/ppapi_thread.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698