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

Unified Diff: chrome/test/data/media/eme_player_js/widevine_player.js

Issue 408993002: Have media content and chrome browser tests load data from media/test/data (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
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: chrome/test/data/media/eme_player_js/widevine_player.js
diff --git a/chrome/test/data/media/eme_player_js/widevine_player.js b/chrome/test/data/media/eme_player_js/widevine_player.js
deleted file mode 100644
index 11e8ec8607d8701544e1aff2ad5abfb875594636..0000000000000000000000000000000000000000
--- a/chrome/test/data/media/eme_player_js/widevine_player.js
+++ /dev/null
@@ -1,38 +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.
-
-// Widevine player responsible for playing media using Widevine key system
-// and EME working draft API.
-function WidevinePlayer(video, testConfig) {
- this.video = video;
- this.testConfig = testConfig;
-}
-
-WidevinePlayer.prototype.init = function() {
- PlayerUtils.initEMEPlayer(this);
-};
-
-WidevinePlayer.prototype.registerEventListeners = function() {
- PlayerUtils.registerEMEEventListeners(this);
-};
-
-WidevinePlayer.prototype.onMessage = function(message) {
- Utils.timeLog('MediaKeySession onMessage', message);
- var mediaKeySession = message.target;
- function onSuccess(response) {
- var key = new Uint8Array(response);
- Utils.timeLog('Update media key session with license response.', key);
- if (PROMISES_SUPPORTED) {
- mediaKeySession.update(key).catch(function(error) {
- Utils.failTest(error, KEY_ERROR);
- });
- } else {
- mediaKeySession.update(key);
- }
-
- }
- Utils.sendRequest('POST', 'arraybuffer', message.message,
- this.testConfig.licenseServerURL, onSuccess,
- this.testConfig.forceInvalidResponse);
-};
« no previous file with comments | « chrome/test/data/media/eme_player_js/utils.js ('k') | chrome/test/data/media/encrypted_frame_size_change.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698