Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(226)

Side by Side Diff: media/cdm/cdm_file_io.h

Issue 1888603002: Add CdmFileIOProvider interface for use by cdm_adapter (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: callback Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2016 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_CDM_FILE_IO_H_
6 #define MEDIA_CDM_CDM_FILE_IO_H_
7
8 #include "base/macros.h"
9 #include "media/base/media_export.h"
10 #include "media/cdm/api/content_decryption_module.h"
11
12 namespace media {
13
14 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.
15 public:
16 ~CdmFileIO() override;
17
18 protected:
19 CdmFileIO();
20
21 private:
22 DISALLOW_COPY_AND_ASSIGN(CdmFileIO);
23 };
24
25 } // namespace media
26
27 #endif // MEDIA_CDM_CDM_FILE_IO_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698