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

Unified Diff: media/base/android/media_drm_storage.cc

Issue 2765343003: media: Add MediaDrmStorage (Closed)
Patch Set: rebase only Created 3 years, 9 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
« no previous file with comments | « media/base/android/media_drm_storage.h ('k') | media/mojo/interfaces/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/base/android/media_drm_storage.cc
diff --git a/media/base/android/media_drm_storage.cc b/media/base/android/media_drm_storage.cc
new file mode 100644
index 0000000000000000000000000000000000000000..4c8119927f0997446828a6c2b9ef925da9bd6345
--- /dev/null
+++ b/media/base/android/media_drm_storage.cc
@@ -0,0 +1,21 @@
+// Copyright 2017 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/base/android/media_drm_storage.h"
+
+#include <utility>
+
+namespace media {
+
+MediaDrmStorage::SessionData::SessionData(std::vector<uint8_t> key_set_id,
+ std::string mime_type)
+ : key_set_id(std::move(key_set_id)), mime_type(std::move(mime_type)) {}
+
+MediaDrmStorage::SessionData::~SessionData() {}
+
+MediaDrmStorage::MediaDrmStorage() {}
+
+MediaDrmStorage::~MediaDrmStorage() {}
+
+} // namespace media
« no previous file with comments | « media/base/android/media_drm_storage.h ('k') | media/mojo/interfaces/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698