Chromium Code Reviews| Index: media/cdm/external_clear_key_test_helper.cc |
| diff --git a/media/cdm/external_clear_key_test_helper.cc b/media/cdm/external_clear_key_test_helper.cc |
| index 06bc20ca0876b81d143c39fe488db3e9003a216c..56aaeedcc5cbecca2f90db913b3bcb24b6587a4c 100644 |
| --- a/media/cdm/external_clear_key_test_helper.cc |
| +++ b/media/cdm/external_clear_key_test_helper.cc |
| @@ -4,6 +4,7 @@ |
| #include "media/cdm/external_clear_key_test_helper.h" |
| +#include "base/debug/leak_annotations.h" |
| #include "base/files/file_path.h" |
| #include "base/files/file_util.h" |
| #include "base/native_library.h" |
| @@ -51,6 +52,8 @@ void ExternalClearKeyTestHelper::LoadLibrary() { |
| InitializeCdmFunc initialize_cdm_func = reinterpret_cast<InitializeCdmFunc>( |
| library_.GetFunctionPointer(MAKE_STRING(INITIALIZE_CDM_MODULE))); |
| ASSERT_TRUE(initialize_cdm_func) << "No INITIALIZE_CDM_MODULE in library"; |
| + |
| + ANNOTATE_SCOPED_MEMORY_LEAK; |
|
kcc2
2017/02/10 22:50:37
This deserves a comment.
A reader looking at this
DaleCurtis
2017/02/10 23:28:23
Comment added, bug filed to see if this is a real
|
| initialize_cdm_func(); |
| } |