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

Unified Diff: android_webview/renderer/aw_key_systems.cc

Issue 253593002: Componentize EncryptedMediaMessageFilter and rename it CdmMessageFilter. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed jam's comments. Created 6 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: android_webview/renderer/aw_key_systems.cc
diff --git a/android_webview/renderer/aw_key_systems.cc b/android_webview/renderer/aw_key_systems.cc
index b276c88f5a4596fb222f8936d769ae355dfd79c3..93144a96ab16864d5035c5d81a71b9749fcfa544 100644
--- a/android_webview/renderer/aw_key_systems.cc
+++ b/android_webview/renderer/aw_key_systems.cc
@@ -4,44 +4,13 @@
#include "android_webview/renderer/aw_key_systems.h"
-#include <string>
-
-#include "base/command_line.h"
-#include "base/logging.h"
-#include "content/public/common/eme_codec.h"
-#include "third_party/widevine/cdm/widevine_cdm_common.h"
-
using content::KeySystemInfo;
Tom Sepez 2014/04/28 18:21:52 nit: the identifier KeySystemInfo now appears but
-namespace {
-
-// Return |name|'s parent key system.
-std::string GetDirectParentName(const std::string& name) {
- int last_period = name.find_last_of('.');
- DCHECK_GT(last_period, 0);
- return name.substr(0, last_period);
-}
-
-void AddWidevineWithCodecs(const std::string& key_system_name,
- bool add_parent_name,
- std::vector<KeySystemInfo>* concrete_key_systems) {
- KeySystemInfo info(key_system_name);
-
- if (add_parent_name)
- info.parent_key_system = GetDirectParentName(key_system_name);
-
- info.supported_codecs = content::EME_CODEC_MP4_ALL;
-
- concrete_key_systems->push_back(info);
-}
-
-} // namespace
-
namespace android_webview {
void AwAddKeySystems(
std::vector<KeySystemInfo>* key_systems_info) {
- AddWidevineWithCodecs(kWidevineKeySystem, true, key_systems_info);
+ // TODO(ycheo): Add the keysystems read from the configuration file.
}
} // namespace android_webview
« no previous file with comments | « no previous file | chrome/browser/chrome_content_browser_client.cc » ('j') | chrome/renderer/media/chrome_key_systems.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698