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

Unified Diff: media/blink/webcontentdecryptionmoduleaccess_impl.h

Issue 1132773003: Revert of Plumb |use_secure_codecs| through to BrowserCdmFactoryAndroid. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 7 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/blink/webcontentdecryptionmoduleaccess_impl.h
diff --git a/media/blink/webcontentdecryptionmoduleaccess_impl.h b/media/blink/webcontentdecryptionmoduleaccess_impl.h
index 5f156984e197aea6c43e1a2bab98b137ea30dfc4..a70fca215bb3daa94647a50270311ae21f2d5002 100644
--- a/media/blink/webcontentdecryptionmoduleaccess_impl.h
+++ b/media/blink/webcontentdecryptionmoduleaccess_impl.h
@@ -6,7 +6,6 @@
#define MEDIA_BLINK_WEBCONTENTDECRYPTIONMODULEACCESS_IMPL_H_
#include "base/memory/weak_ptr.h"
-#include "media/base/cdm_config.h"
#include "third_party/WebKit/public/platform/WebContentDecryptionModuleAccess.h"
#include "third_party/WebKit/public/platform/WebContentDecryptionModuleResult.h"
#include "third_party/WebKit/public/platform/WebMediaKeySystemConfiguration.h"
@@ -22,9 +21,8 @@
public:
static WebContentDecryptionModuleAccessImpl* Create(
const blink::WebString& key_system,
+ const blink::WebMediaKeySystemConfiguration& configuration,
const blink::WebSecurityOrigin& security_origin,
- const blink::WebMediaKeySystemConfiguration& configuration,
- const CdmConfig& cdm_config,
const base::WeakPtr<WebEncryptedMediaClientImpl>& client);
virtual ~WebContentDecryptionModuleAccessImpl();
@@ -36,15 +34,13 @@
private:
WebContentDecryptionModuleAccessImpl(
const blink::WebString& key_system,
+ const blink::WebMediaKeySystemConfiguration& configuration,
const blink::WebSecurityOrigin& security_origin,
- const blink::WebMediaKeySystemConfiguration& configuration,
- const CdmConfig& cdm_config,
const base::WeakPtr<WebEncryptedMediaClientImpl>& client);
- const blink::WebString key_system_;
- const blink::WebSecurityOrigin security_origin_;
- const blink::WebMediaKeySystemConfiguration configuration_;
- const CdmConfig cdm_config_;
+ blink::WebString key_system_;
+ blink::WebMediaKeySystemConfiguration configuration_;
+ blink::WebSecurityOrigin security_origin_;
// Keep a WeakPtr as client is owned by render_frame_impl.
base::WeakPtr<WebEncryptedMediaClientImpl> client_;
« no previous file with comments | « media/blink/webcontentdecryptionmodule_impl.cc ('k') | media/blink/webcontentdecryptionmoduleaccess_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698