diff options
Diffstat (limited to 'chromium/chrome/common/media')
3 files changed, 5 insertions, 0 deletions
diff --git a/chromium/chrome/common/media/cdm_host_file_path.cc b/chromium/chrome/common/media/cdm_host_file_path.cc index e1dffd5a466..2adbad725bd 100644 --- a/chromium/chrome/common/media/cdm_host_file_path.cc +++ b/chromium/chrome/common/media/cdm_host_file_path.cc @@ -6,7 +6,9 @@ #include "base/files/file_path.h" #include "base/files/file_util.h" +#include "base/check.h" #include "base/logging.h" +#include "base/notreached.h" #include "base/path_service.h" #include "base/stl_util.h" #include "build/branding_buildflags.h" diff --git a/chromium/chrome/common/media/component_widevine_cdm_hint_file_linux.cc b/chromium/chrome/common/media/component_widevine_cdm_hint_file_linux.cc index 0fdfc56c725..44a89a2e7f6 100644 --- a/chromium/chrome/common/media/component_widevine_cdm_hint_file_linux.cc +++ b/chromium/chrome/common/media/component_widevine_cdm_hint_file_linux.cc @@ -7,10 +7,12 @@ #include <memory> #include <string> +#include "base/check.h" #include "base/files/file_path.h" #include "base/files/file_util.h" #include "base/files/important_file_writer.h" #include "base/json/json_string_value_serializer.h" +#include "base/logging.h" #include "base/path_service.h" #include "base/values.h" #include "chrome/common/chrome_paths.h" diff --git a/chromium/chrome/common/media/component_widevine_cdm_hint_file_linux_unittest.cc b/chromium/chrome/common/media/component_widevine_cdm_hint_file_linux_unittest.cc index 125bf50d21a..62508021b0e 100644 --- a/chromium/chrome/common/media/component_widevine_cdm_hint_file_linux_unittest.cc +++ b/chromium/chrome/common/media/component_widevine_cdm_hint_file_linux_unittest.cc @@ -7,6 +7,7 @@ #include <stdint.h> #include <stdlib.h> +#include "base/check.h" #include "base/files/file_path.h" #include "base/files/file_util.h" #include "base/files/important_file_writer.h" |