#ifndef CONTENT_BROWSER_MEDIA_CDM_STORAGE_COMMON_H_
#define CONTENT_BROWSER_MEDIA_CDM_STORAGE_COMMON_H_
#include <stdint.h>
#include <string>
#include <vector>
#include "base/files/file_path.h"
#include "base/functional/callback.h"
#include "content/common/content_export.h"
#include "media/cdm/cdm_type.h"
#include "third_party/blink/public/common/storage_key/storage_key.h"
namespace content {
enum class CdmStorageOpenError { … };
const base::FilePath::CharType kCdmStorageDatabaseFileName[] = …);
struct CONTENT_EXPORT CdmStorageBindingContext { … };
struct CONTENT_EXPORT CdmFileId { … };
struct CONTENT_EXPORT CdmFileIdTwo { … };
struct CONTENT_EXPORT CdmFileIdAndContents { … };
std::string GetCdmStorageManagerHistogramName(const std::string& operation,
bool in_memory);
}
#endif