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

Unified Diff: trunk/src/media/test/data/eme_player_js/clearkey_player.js

Issue 383063009: Revert 282795 "Have media content and chrome browser tests load ..." (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 6 years, 5 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: trunk/src/media/test/data/eme_player_js/clearkey_player.js
===================================================================
--- trunk/src/media/test/data/eme_player_js/clearkey_player.js (revision 282811)
+++ trunk/src/media/test/data/eme_player_js/clearkey_player.js (working copy)
@@ -1,33 +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.
-
-// ClearKeyPlayer responsible for playing media using Clear Key key system and
-// the unprefixed version of EME.
-function ClearKeyPlayer(video, testConfig) {
- this.video = video;
- this.testConfig = testConfig;
-}
-
-ClearKeyPlayer.prototype.init = function() {
- PlayerUtils.initEMEPlayer(this);
-};
-
-ClearKeyPlayer.prototype.registerEventListeners = function() {
- PlayerUtils.registerEMEEventListeners(this);
-};
-
-ClearKeyPlayer.prototype.onMessage = function(message) {
- Utils.timeLog('MediaKeySession onMessage', message);
- var initData =
- Utils.getInitDataFromMessage(message, this.testConfig.mediaType);
- var key = Utils.getDefaultKey(this.testConfig.forceInvalidResponse);
- var jwkSet = Utils.createJWKData(initData, key);
- if (PROMISES_SUPPORTED) {
- message.target.update(jwkSet).catch(function(error) {
- Utils.failTest(error, KEY_ERROR);
- });
- } else {
- message.target.update(jwkSet);
- }
-};
« no previous file with comments | « trunk/src/media/test/data/eme_player_js/app_loader.js ('k') | trunk/src/media/test/data/eme_player_js/eme_app.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698