Chromium Code Reviews| Index: media/cdm/cdm_file_io.h |
| diff --git a/media/cdm/cdm_file_io.h b/media/cdm/cdm_file_io.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..3ec83300a4ee81388f903802755e6afc55cf6c76 |
| --- /dev/null |
| +++ b/media/cdm/cdm_file_io.h |
| @@ -0,0 +1,27 @@ |
| +// Copyright 2016 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#ifndef MEDIA_CDM_CDM_FILE_IO_H_ |
| +#define MEDIA_CDM_CDM_FILE_IO_H_ |
| + |
| +#include "base/macros.h" |
| +#include "media/base/media_export.h" |
| +#include "media/cdm/api/content_decryption_module.h" |
| + |
| +namespace media { |
| + |
| +class MEDIA_EXPORT CdmFileIO : public cdm::FileIO { |
|
xhwang
2016/04/18 21:09:23
Add a comment why we need this?
jrummell
2016/04/19 23:59:29
Done.
|
| + public: |
| + ~CdmFileIO() override; |
| + |
| + protected: |
| + CdmFileIO(); |
| + |
| + private: |
| + DISALLOW_COPY_AND_ASSIGN(CdmFileIO); |
| +}; |
| + |
| +} // namespace media |
| + |
| +#endif // MEDIA_CDM_CDM_FILE_IO_H_ |