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

Unified Diff: media/cdm/simple_cdm_file_io_provider.cc

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 side-by-side diff with in-line comments
Download patch
Index: media/cdm/simple_cdm_file_io_provider.cc
diff --git a/media/cdm/simple_cdm_file_io_provider.cc b/media/cdm/simple_cdm_file_io_provider.cc
new file mode 100644
index 0000000000000000000000000000000000000000..1c223c0d57e29d1f9c4d6b2908b1bc75a4cc02e3
--- /dev/null
+++ b/media/cdm/simple_cdm_file_io_provider.cc
@@ -0,0 +1,18 @@
+// 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.
+
+#include "media/cdm/simple_cdm_file_io_provider.h"
+
+namespace media {
+
+SimpleCdmFileIOProvider::SimpleCdmFileIOProvider() {}
+
+SimpleCdmFileIOProvider::~SimpleCdmFileIOProvider() {}
+
+// For testing we don't use FileIO, so simply return NULL.
+cdm::FileIO* SimpleCdmFileIOProvider::CreateFileIO(cdm::FileIOClient* client) {
+ return nullptr;
+}
+
+} // namespace media

Powered by Google App Engine
This is Rietveld 408576698