| 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)
|
|
|