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

Unified Diff: media/base/android/android_cdm_factory.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/BUILD.gn ('k') | media/base/android/android_cdm_factory.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/base/android/android_cdm_factory.h
diff --git a/media/base/android/android_cdm_factory.h b/media/base/android/android_cdm_factory.h
index 83b5c2705e7b4638544da67afdb8bbd212da9a56..5285efcfce9b2d91498d45efae419e02da48f11e 100644
--- a/media/base/android/android_cdm_factory.h
+++ b/media/base/android/android_cdm_factory.h
@@ -6,6 +6,7 @@
#define MEDIA_BASE_ANDROID_ANDROID_CDM_FACTORY_H_
#include "base/macros.h"
+#include "media/base/android/media_drm_storage.h"
#include "media/base/cdm_factory.h"
#include "media/base/media_export.h"
#include "media/base/provision_fetcher.h"
@@ -16,7 +17,8 @@ struct CdmConfig;
class MEDIA_EXPORT AndroidCdmFactory : public CdmFactory {
public:
- AndroidCdmFactory(const CreateFetcherCB& create_fetcher_cb);
+ AndroidCdmFactory(const CreateFetcherCB& create_fetcher_cb,
+ const CreateStorageCB& create_storage_cb);
~AndroidCdmFactory() final;
// CdmFactory implementation.
@@ -31,6 +33,7 @@ class MEDIA_EXPORT AndroidCdmFactory : public CdmFactory {
private:
CreateFetcherCB create_fetcher_cb_;
+ CreateStorageCB create_storage_cb_;
DISALLOW_COPY_AND_ASSIGN(AndroidCdmFactory);
};
« no previous file with comments | « media/base/android/BUILD.gn ('k') | media/base/android/android_cdm_factory.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698