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

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

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_bridge.cc ('k') | media/base/android/media_drm_storage.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/base/android/media_drm_storage.h
diff --git a/media/base/android/media_drm_storage.h b/media/base/android/media_drm_storage.h
new file mode 100644
index 0000000000000000000000000000000000000000..96bc69e7a0b292cec424ff02ae7a43206e9c1d06
--- /dev/null
+++ b/media/base/android/media_drm_storage.h
@@ -0,0 +1,82 @@
+// 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.
+
+#ifndef MEDIA_BASE_ANDROID_MEDIA_DRM_STORAGE_H_
+#define MEDIA_BASE_ANDROID_MEDIA_DRM_STORAGE_H_
+
+#include <stdint.h>
+
+#include <memory>
+#include <string>
+#include <vector>
+
+#include "base/callback.h"
+#include "base/macros.h"
+#include "media/base/media_export.h"
+#include "url/origin.h"
+
+namespace media {
+
+// Allows MediaDrmBridge to store and retrieve persistent data. This is needed
+// for features like per-origin provisioning and persistent license support.
+class MEDIA_EXPORT MediaDrmStorage {
+ public:
+ struct SessionData {
+ SessionData(std::vector<uint8_t> key_set_id, std::string mime_type);
+ ~SessionData();
+
+ std::vector<uint8_t> key_set_id;
+ std::string mime_type;
+ };
+
+ MediaDrmStorage();
+ virtual ~MediaDrmStorage();
+
+ // Callback to return whether the operation succeeded.
+ using ResultCB = base::OnceCallback<void(bool)>;
+
+ // Callback to return the result of LoadPersistentSession. |key_set_id| and
+ // |mime_type| must be non-empty if |success| is true, and vice versa.
+ using LoadPersistentSessionCB =
+ base::OnceCallback<void(std::unique_ptr<SessionData> session_data)>;
+
+ // Binds |this| to |origin|.
+ // TODO(xhwang): The host of the service should know about the last committed
+ // origin. We should solely use that origin, or check the |origin| against it.
+ // TODO(xhwang): We should NOT use the real origin for provisioning. Use a
+ // random origin ID instead.
+ virtual void Initialize(const url::Origin& origin) = 0;
+
+ // Called when MediaDrm is provisioned for the origin bound to |this|.
+ // The implementation should keep track of the storing time so that the
+ // information can be cleared based on selected time range (e.g. for clearing
+ // browsing data).
+ virtual void OnProvisioned(ResultCB result_cb) = 0;
+
+ // Saves the persistent session info for |session_id| in the storage.
+ // The implementation should keep track of the storing time so that the
+ // information can be cleared based on selected time range (e.g. for clearing
+ // browsing data).
+ virtual void SavePersistentSession(const std::string& session_id,
+ const SessionData& session_data,
+ ResultCB result_cb) = 0;
+
+ // Loads the persistent session info for |session_id| from the storage.
+ virtual void LoadPersistentSession(
+ const std::string& session_id,
+ LoadPersistentSessionCB load_persistent_session_cb) = 0;
+
+ // Removes the persistent session info for |session_id| from the storage.
+ virtual void RemovePersistentSession(const std::string& session_id,
+ ResultCB result_cb) = 0;
+
+ private:
+ DISALLOW_COPY_AND_ASSIGN(MediaDrmStorage);
+};
+
+using CreateStorageCB = base::Callback<std::unique_ptr<MediaDrmStorage>()>;
+
+} // namespace media
+
+#endif // MEDIA_BASE_ANDROID_MEDIA_DRM_STORAGE_H_
« no previous file with comments | « media/base/android/media_drm_bridge.cc ('k') | media/base/android/media_drm_storage.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698