OLD | NEW |
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></title> | 12 <title></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 <script src="js/media/video_player_scripts.js"></script> | 17 <script src="js/media/video_player_scripts.js"></script> |
18 | 18 |
19 <if expr="0"> | 19 <if expr="0"> |
20 <!-- This file has not been flattened, load individual scripts. | 20 <!-- This file has not been flattened, load individual scripts. |
21 Keep the list in sync with video_player_scripts.js. --> | 21 Keep the list in sync with video_player_scripts.js. --> |
22 <script src="js/util.js"></script> | 22 <script src="js/util.js"></script> |
23 <script src="../shared/js/load_time_data.js"></script> | |
24 <script src="js/file_type.js"></script> | 23 <script src="js/file_type.js"></script> |
25 <script src="js/media/media_controls.js"></script> | 24 <script src="js/media/media_controls.js"></script> |
26 <script src="js/media/util.js"></script> | 25 <script src="js/media/util.js"></script> |
27 <script src="js/media/video_player.js"></script> | 26 <script src="js/media/video_player.js"></script> |
28 <script src="js/media/player_testapi.js"></script> | 27 <script src="js/media/player_testapi.js"></script> |
29 <script src="js/metadata/metadata_cache.js"></script> | 28 <script src="js/metadata/metadata_cache.js"></script> |
| 29 <script src="../../../../ui/webui/resources/js/load_time_data.js"></script> |
30 </if> | 30 </if> |
31 </head> | 31 </head> |
32 <body> | 32 <body> |
33 <div id="video-player" tools> | 33 <div id="video-player" tools> |
34 <div id="video-container"> | 34 <div id="video-container"> |
35 <video></video> | 35 <video></video> |
36 </div> | 36 </div> |
37 <div id="controls-wrapper"> | 37 <div id="controls-wrapper"> |
38 <div id="controls" class="tool"></div> | 38 <div id="controls" class="tool"></div> |
39 </div> | 39 </div> |
40 <div id="error-wrapper"> | 40 <div id="error-wrapper"> |
41 <div id="error"></div> | 41 <div id="error"></div> |
42 </div> | 42 </div> |
43 </div> | 43 </div> |
44 </body> | 44 </body> |
45 </html> | 45 </html> |
OLD | NEW |