chromium/media/cdm/external_clear_key_test_helper.cc

// Copyright 2015 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#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"
#include "base/path_service.h"
#include "build/build_config.h"
#include "media/cdm/api/content_decryption_module.h"
#include "media/cdm/cdm_paths.h"
#include "media/cdm/clear_key_cdm_common.h"
#include "testing/gtest/include/gtest/gtest.h"

namespace media {

// INITIALIZE_CDM_MODULE is a macro in api/content_decryption_module.h.
// However, we need to pass it as a string to GetFunctionPointer() once it
// is expanded.
#define STRINGIFY(X)
#define MAKE_STRING(X)

ExternalClearKeyTestHelper::ExternalClearKeyTestHelper() {}

ExternalClearKeyTestHelper::~ExternalClearKeyTestHelper() {}

void ExternalClearKeyTestHelper::LoadLibrary() {}

void ExternalClearKeyTestHelper::UnloadLibrary() {}

}  // namespace media