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

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

Issue 1888603002: Add CdmFileIOProvider interface for use by cdm_adapter (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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_SIMPLE_CDM_FILE_IO_PROVIDER_H_
6 #define MEDIA_CDM_SIMPLE_CDM_FILE_IO_PROVIDER_H_
7
8 #include "base/macros.h"
9 #include "media/cdm/cdm_file_io_provider.h"
10
11 namespace media {
12
13 // This is a simple CdmFileIOProvider for testing.
14 class SimpleCdmFileIOProvider : public CdmFileIOProvider {
15 public:
16 SimpleCdmFileIOProvider();
17 ~SimpleCdmFileIOProvider() final;
18
19 // CdmFileIOProvider implementation.
20 cdm::FileIO* CreateFileIO(cdm::FileIOClient* client) final;
21
22 private:
23 DISALLOW_COPY_AND_ASSIGN(SimpleCdmFileIOProvider);
24 };
25
26 } // namespace media
27
28 #endif // MEDIA_CDM_SIMPLE_CDM_FILE_IO_PROVIDER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698