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

Side by Side Diff: media/test/data/eme_player_js/app_loader.js

Issue 398823004: 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « media/test/data/eme_player.html ('k') | media/test/data/eme_player_js/clearkey_player.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // Adds a Javascript source tag to the document. 5 // Adds a Javascript source tag to the document.
6 function addScriptTag(src) { 6 function addScriptTag(src) {
7 document.write( 7 document.write(
8 '<script type="text/javascript" src="eme_player_js/' + src + 8 '<script type="text/javascript" src="eme_player_js/' + src +
9 '"></script>'); 9 '"></script>');
10 } 10 }
11 11
12 // Load all the dependencies for the app. 12 // Load all the dependencies for the app.
13 addScriptTag('globals.js'); 13 addScriptTag('globals.js');
14 addScriptTag('utils.js'); 14 addScriptTag('utils.js');
15 addScriptTag('test_config.js'); 15 addScriptTag('test_config.js');
16 addScriptTag('fps_observer.js'); 16 addScriptTag('fps_observer.js');
17 addScriptTag('media_source_utils.js'); 17 addScriptTag('media_source_utils.js');
18 addScriptTag('player_utils.js'); 18 addScriptTag('player_utils.js');
19 addScriptTag('prefixed_clearkey_player.js'); 19 addScriptTag('prefixed_clearkey_player.js');
20 addScriptTag('clearkey_player.js'); 20 addScriptTag('clearkey_player.js');
21 addScriptTag('widevine_player.js'); 21 addScriptTag('widevine_player.js');
22 addScriptTag('prefixed_widevine_player.js'); 22 addScriptTag('prefixed_widevine_player.js');
23 addScriptTag('file_io_test_player.js'); 23 addScriptTag('file_io_test_player.js');
24 addScriptTag('eme_app.js'); 24 addScriptTag('eme_app.js');
OLDNEW
« no previous file with comments | « media/test/data/eme_player.html ('k') | media/test/data/eme_player_js/clearkey_player.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698