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

Unified Diff: media/test/data/eme_player_js/eme_app.js

Issue 1712903002: Remove prefixed EME. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix isRenewalMessage() in browser tests. Created 4 years, 10 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/test/data/eme_player_js/eme_app.js
diff --git a/media/test/data/eme_player_js/eme_app.js b/media/test/data/eme_player_js/eme_app.js
index bf07e72a44ecd934fba6543b782382e3ad9612ec..f60b6434587c87101658a80e3be6f695910c2a74 100644
--- a/media/test/data/eme_player_js/eme_app.js
+++ b/media/test/data/eme_player_js/eme_app.js
@@ -54,8 +54,6 @@ EMEApp.prototype.updateDocument = function(testConfig) {
// Update document lists with test configuration values.
Utils.addOptions(KEYSYSTEM_ELEMENT_ID, KEY_SYSTEMS);
Utils.addOptions(MEDIA_TYPE_ELEMENT_ID, MEDIA_TYPES);
- Utils.addOptions(USE_PREFIXED_EME_ID, EME_VERSIONS_OPTIONS,
- EME_DISABLED_OPTIONS);
document.getElementById(MEDIA_FILE_ELEMENT_ID).value =
testConfig.mediaFile || DEFAULT_MEDIA_FILE;
document.getElementById(LICENSE_SERVER_ELEMENT_ID).value =
@@ -65,8 +63,6 @@ EMEApp.prototype.updateDocument = function(testConfig) {
if (testConfig.mediaType)
Utils.ensureOptionInList(MEDIA_TYPE_ELEMENT_ID, testConfig.mediaType);
document.getElementById(USE_MSE_ELEMENT_ID).value = testConfig.useMSE;
- if (testConfig.usePrefixedEME)
- document.getElementById(USE_PREFIXED_EME_ID).value = EME_PREFIXED_VERSION;
};
EMEApp.prototype.updateTestConfig = function() {
@@ -79,9 +75,6 @@ EMEApp.prototype.updateTestConfig = function() {
document.getElementById(MEDIA_TYPE_ELEMENT_ID).value;
this.testConfig_.useMSE =
document.getElementById(USE_MSE_ELEMENT_ID).value == 'true';
- this.testConfig_.usePrefixedEME = (
- document.getElementById(USE_PREFIXED_EME_ID).value ==
- EME_PREFIXED_VERSION);
this.testConfig_.licenseServerURL =
document.getElementById(LICENSE_SERVER_ELEMENT_ID).value;
};
« no previous file with comments | « media/test/data/eme_player_js/clearkey_player.js ('k') | media/test/data/eme_player_js/file_io_test_player.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698