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

Side by Side Diff: chrome/browser/resources/file_manager/video_player.html

Issue 39123003: [Files.app] Split the JavaScript files into subdirectories: common, background, and foreground (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fixed test failure. Created 7 years, 1 month 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 | « chrome/browser/resources/file_manager/photo_import.html ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!-- 1 <!--
2 -- Copyright (c) 2012 The Chromium Authors. All rights reserved. 2 -- Copyright (c) 2012 The Chromium Authors. All rights reserved.
3 -- Use of this source code is governed by a BSD-style license that can be 3 -- Use of this source code is governed by a BSD-style license that can be
4 -- found in the LICENSE file. 4 -- found in the LICENSE file.
5 --> 5 -->
6 <html> 6 <html>
7 <head> 7 <head>
8 <!-- We have to set some default title, or chrome will use the page name. 8 <!-- We have to set some default title, or chrome will use the page name.
9 -- As soon as the i18n'd strings are loaded we replace it with the correct 9 -- As soon as the i18n'd strings are loaded we replace it with the correct
10 -- string. Until then, use an invisible non-whitespace character. 10 -- string. Until then, use an invisible non-whitespace character.
11 --> 11 -->
12 <title>&#xFEFF;</title> 12 <title>&#xFEFF;</title>
13 <link rel="icon" type="image/png" href="chrome://theme/IDR_FILE_MANAGER_IMG_FI LETYPE_VIDEO"> 13 <link rel="icon" type="image/png" href="chrome://theme/IDR_FILE_MANAGER_IMG_FI LETYPE_VIDEO">
14 <link rel="stylesheet" type="text/css" href="css/media_controls.css"> 14 <link rel="stylesheet" type="text/css" href="css/media_controls.css">
15 <link rel="stylesheet" type="text/css" href="css/video_player.css"> 15 <link rel="stylesheet" type="text/css" href="css/video_player.css">
16 16
17 <!-- Don't load video_player_scripts.js when flattening is disabled --> 17 <!-- Don't load video_player_scripts.js when flattening is disabled -->
18 <if expr="0"><!-- </if> 18 <if expr="0"><!-- </if>
19 <script src="js/media/video_player_scripts.js"></script> 19 <script src="foreground/js/media/video_player_scripts.js"></script>
20 <if expr="0"> --></if> 20 <if expr="0"> --></if>
21 21
22 <if expr="0"> 22 <if expr="0">
23 <!-- This section is used when the file manager is loaded with 23 <!-- This section is used when the file manager is loaded with
24 'filemgr-ext-path' command-line flag. --> 24 'filemgr-ext-path' command-line flag. -->
25 <!-- Keep the list in sync with video_player_scripts.js. --> 25 <!-- Keep the list in sync with video_player_scripts.js. -->
26 <script src="chrome://resources/js/cr.js"></script> 26 <script src="chrome://resources/js/cr.js"></script>
27 <script src="chrome://resources/js/cr/event_target.js"></script> 27 <script src="chrome://resources/js/cr/event_target.js"></script>
28 <script src="chrome://resources/js/cr/ui/array_data_model.js"></script> 28 <script src="chrome://resources/js/cr/ui/array_data_model.js"></script>
29 <script src="chrome://resources/js/load_time_data.js"></script> 29 <script src="chrome://resources/js/load_time_data.js"></script>
30 30
31 <script src="js/async_util.js"></script> 31 <script src="common/js/async_util.js"></script>
32 <script src="js/util.js"></script> 32 <script src="common/js/util.js"></script>
33 <script src="js/path_util.js"></script> 33 <script src="common/js/path_util.js"></script>
34 <script src="js/file_type.js"></script>
35 <script src="js/volume_manager_wrapper.js"></script>
36 <script src="js/metadata/metadata_cache.js"></script>
37 34
38 <script src="js/media/media_controls.js"></script> 35 <script src="foreground/js/file_type.js"></script>
39 <script src="js/media/util.js"></script> 36 <script src="foreground/js/volume_manager_wrapper.js"></script>
40 <script src="js/media/video_player.js"></script> 37 <script src="foreground/js/metadata/metadata_cache.js"></script>
41 <script src="js/media/player_testapi.js"></script> 38
39 <script src="foreground/js/media/media_controls.js"></script>
40 <script src="foreground/js/media/util.js"></script>
41 <script src="foreground/js/media/video_player.js"></script>
42 <script src="foreground/js/media/player_testapi.js"></script>
42 </if> 43 </if>
43 </head> 44 </head>
44 <body> 45 <body>
45 <div id="video-player" tools> 46 <div id="video-player" tools>
46 <div id="video-container"> 47 <div id="video-container">
47 </div> 48 </div>
48 <div id="controls-wrapper"> 49 <div id="controls-wrapper">
49 <div id="controls" class="tool"></div> 50 <div id="controls" class="tool"></div>
50 </div> 51 </div>
51 <div id="error-wrapper"> 52 <div id="error-wrapper">
52 <div id="error"></div> 53 <div id="error"></div>
53 </div> 54 </div>
54 </div> 55 </div>
55 </body> 56 </body>
56 </html> 57 </html>
OLDNEW
« no previous file with comments | « chrome/browser/resources/file_manager/photo_import.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698