OLD | NEW |
---|---|
(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 #include "media/cdm/simple_cdm_file_io_provider.h" | |
6 | |
7 namespace media { | |
8 | |
9 SimpleCdmFileIOProvider::SimpleCdmFileIOProvider() {} | |
10 | |
11 SimpleCdmFileIOProvider::~SimpleCdmFileIOProvider() {} | |
12 | |
13 // For testing we don't use FileIO, so simply return NULL. | |
14 cdm::FileIO* SimpleCdmFileIOProvider::CreateFileIO(cdm::FileIOClient* client) { | |
15 return nullptr; | |
16 } | |
17 | |
18 } // namespace media | |
OLD | NEW |