#ifndef CHROME_BROWSER_MEDIA_CLEAR_KEY_CDM_TEST_HELPER_H_
#define CHROME_BROWSER_MEDIA_CLEAR_KEY_CDM_TEST_HELPER_H_
#include <vector>
#include "base/test/scoped_feature_list.h"
#include "build/build_config.h"
#include "media/media_buildflags.h"
namespace base {
class CommandLine;
}
#if BUILDFLAG(ENABLE_LIBRARY_CDMS)
void RegisterClearKeyCdm(base::CommandLine* command_line,
bool use_wrong_cdm_path = false);
#endif
#if BUILDFLAG(IS_WIN)
void RegisterMediaFoundationClearKeyCdm(
std::vector<base::test::FeatureRefAndParams>& features);
#endif
#endif