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

Side by Side 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 // ClearKey player responsible for playing media using Clear Key key system and
6 // prefixed EME API.
7 function PrefixedClearKeyPlayer(video, testConfig) {
8 this.video = video;
9 this.testConfig = testConfig;
10 }
11
12 PrefixedClearKeyPlayer.prototype.init = function() {
13 // Returns a promise.
14 return PlayerUtils.initEMEPlayer(this);
15 };
16
17 PrefixedClearKeyPlayer.prototype.registerEventListeners = function() {
18 // Returns a promise.
19 return PlayerUtils.registerPrefixedEMEEventListeners(this);
20 };
21
22 PrefixedClearKeyPlayer.prototype.onWebkitKeyMessage = function(message) {
23 var initData = Utils.convertToUint8Array(message.message);
24 var key = Utils.getDefaultKey(this.testConfig.forceInvalidResponse);
25 Utils.timeLog('Adding key to sessionID: ' + message.sessionId);
26 message.target.webkitAddKey(this.testConfig.keySystem, key, initData,
27 message.sessionId);
28 };
OLDNEW
« 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