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

Unified Diff: media/test/data/eme_player_js/file_io_test_player.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
« no previous file with comments | « media/test/data/eme_player_js/eme_app.js ('k') | media/test/data/eme_player_js/globals.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/test/data/eme_player_js/file_io_test_player.js
diff --git a/media/test/data/eme_player_js/file_io_test_player.js b/media/test/data/eme_player_js/file_io_test_player.js
index 5136e7d9a83a63c541659b3990bc34b532a2b718..fb0d025eac4b0762d51f5d0cbeed7290f228f7a2 100644
--- a/media/test/data/eme_player_js/file_io_test_player.js
+++ b/media/test/data/eme_player_js/file_io_test_player.js
@@ -15,9 +15,7 @@ FileIOTestPlayer.prototype.init = function() {
FileIOTestPlayer.prototype.registerEventListeners = function() {
// Returns a promise.
- return PlayerUtils.registerEMEEventListeners(this).then(function(result) {
- return PlayerUtils.registerPrefixedEMEEventListeners(this);
- });
+ return PlayerUtils.registerEMEEventListeners(this);
};
handleMessage = function(message) {
@@ -38,8 +36,4 @@ handleMessage = function(message) {
}
};
-// Check message for prefixed API.
-FileIOTestPlayer.prototype.onWebkitKeyMessage = handleMessage;
-
-// Check message for unprefixed API.
FileIOTestPlayer.prototype.onMessage = handleMessage;
« no previous file with comments | « media/test/data/eme_player_js/eme_app.js ('k') | media/test/data/eme_player_js/globals.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698