clear_key_cdm_common.h revision 6e8cce623b6e4fe0c9e4af605d675dd9d0338c38
1// Copyright 2013 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#ifndef MEDIA_CDM_PPAPI_EXTERNAL_CLEAR_KEY_CLEAR_KEY_CDM_COMMON_H_
6#define MEDIA_CDM_PPAPI_EXTERNAL_CLEAR_KEY_CLEAR_KEY_CDM_COMMON_H_
7
8#include "media/cdm/ppapi/api/content_decryption_module.h"
9
10namespace media {
11
12// Aliases for the version of the interfaces that this CDM implements.
13typedef cdm::ContentDecryptionModule_6 ClearKeyCdmInterface;
14typedef ClearKeyCdmInterface::Host ClearKeyCdmHost;
15
16}  // namespace media
17
18#endif  // MEDIA_CDM_PPAPI_EXTERNAL_CLEAR_KEY_CLEAR_KEY_CDM_COMMON_H_
19