#ifndef MEDIA_CDM_LIBRARY_CDM_MOCK_LIBRARY_CDM_H_
#define MEDIA_CDM_LIBRARY_CDM_MOCK_LIBRARY_CDM_H_
#include <stdint.h>
#include <memory>
#include <string>
#include "media/cdm/api/content_decryption_module.h"
#include "testing/gmock/include/gmock/gmock.h"
namespace media {
class CdmHostProxy;
class MockLibraryCdm : public cdm::ContentDecryptionModule_10,
public cdm::ContentDecryptionModule_11 { … };
void* CreateMockLibraryCdm(int cdm_interface_version,
const char* key_system,
uint32_t key_system_size,
GetCdmHostFunc get_cdm_host_func,
void* user_data);
}
#endif