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

Unified Diff: media/test/data/eme_player_js/prefixed_clearkey_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
Index: media/test/data/eme_player_js/prefixed_clearkey_player.js
diff --git a/media/test/data/eme_player_js/prefixed_clearkey_player.js b/media/test/data/eme_player_js/prefixed_clearkey_player.js
deleted file mode 100644
index 13240c9932ded5f08cd8b1a0cba7d3425516ff0f..0000000000000000000000000000000000000000
--- a/media/test/data/eme_player_js/prefixed_clearkey_player.js
+++ /dev/null
@@ -1,28 +0,0 @@
-// Copyright 2014 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-// ClearKey player responsible for playing media using Clear Key key system and
-// prefixed EME API.
-function PrefixedClearKeyPlayer(video, testConfig) {
- this.video = video;
- this.testConfig = testConfig;
-}
-
-PrefixedClearKeyPlayer.prototype.init = function() {
- // Returns a promise.
- return PlayerUtils.initEMEPlayer(this);
-};
-
-PrefixedClearKeyPlayer.prototype.registerEventListeners = function() {
- // Returns a promise.
- return PlayerUtils.registerPrefixedEMEEventListeners(this);
-};
-
-PrefixedClearKeyPlayer.prototype.onWebkitKeyMessage = function(message) {
- var initData = Utils.convertToUint8Array(message.message);
- var key = Utils.getDefaultKey(this.testConfig.forceInvalidResponse);
- Utils.timeLog('Adding key to sessionID: ' + message.sessionId);
- message.target.webkitAddKey(this.testConfig.keySystem, key, initData,
- message.sessionId);
-};
« no previous file with comments | « media/test/data/eme_player_js/player_utils.js ('k') | media/test/data/eme_player_js/prefixed_widevine_player.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698