OLD | NEW |
1 <!-- | 1 <!-- |
2 -- Copyright 2014 The Chromium Authors. All rights reserved. | 2 -- Copyright 2014 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 <!DOCTYPE HTML> | 6 <!DOCTYPE HTML> |
7 <html> | 7 <html> |
8 <head> | 8 <head> |
9 <!-- We have to set some default title, or chrome will use the page name. | 9 <!-- We have to set some default title, or chrome will use the page name. |
10 -- As soon as the i18n'd strings are loaded we replace it with the correct | 10 -- As soon as the i18n'd strings are loaded we replace it with the correct |
11 -- string. Until then, use an invisible non-whitespace character. | 11 -- string. Until then, use an invisible non-whitespace character. |
12 --> | 12 --> |
13 <title></title> | 13 <title></title> |
14 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css"> | 14 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css"> |
15 <link rel="stylesheet" type="text/css" href="css/audio_player.css"> | 15 <link rel="stylesheet" type="text/css" href="css/audio_player.css"> |
| 16 |
| 17 <script src="chrome-extension://hhaomjibdihmijegdhdafkllkbggdgoj/common/js/pol
ymer_config.js"></script> |
16 <link rel="import" href="elements/audio_player.html"> | 18 <link rel="import" href="elements/audio_player.html"> |
17 </head> | 19 </head> |
18 <body> | 20 <body> |
19 <div class="audio-player"> | 21 <div class="audio-player"> |
20 <!-- Place the audio player. --> | 22 <!-- Place the audio player. --> |
21 <audio-player></audio-player> | 23 <audio-player></audio-player> |
22 </div> | 24 </div> |
23 | 25 |
24 <!-- Don't load mediaplayer_scripts.js when flattening is disabled --> | 26 <!-- Don't load mediaplayer_scripts.js when flattening is disabled --> |
25 <if expr="False"><!-- </if> | 27 <if expr="False"><!-- </if> |
(...skipping 26 matching lines...) Expand all Loading... |
52 <script src="../file_manager/foreground/js/metadata/metadata_item.js"></scri
pt> | 54 <script src="../file_manager/foreground/js/metadata/metadata_item.js"></scri
pt> |
53 <script src="../file_manager/foreground/js/metadata/metadata_model.js"></scr
ipt> | 55 <script src="../file_manager/foreground/js/metadata/metadata_model.js"></scr
ipt> |
54 <script src="../file_manager/foreground/js/metadata/multi_metadata_provider.
js"></script> | 56 <script src="../file_manager/foreground/js/metadata/multi_metadata_provider.
js"></script> |
55 <script src="../file_manager/foreground/js/metadata/thumbnail_model.js"></sc
ript> | 57 <script src="../file_manager/foreground/js/metadata/thumbnail_model.js"></sc
ript> |
56 | 58 |
57 <script src="js/audio_player.js"></script> | 59 <script src="js/audio_player.js"></script> |
58 <script src="js/audio_player_model.js"></script> | 60 <script src="js/audio_player_model.js"></script> |
59 </if> | 61 </if> |
60 </body> | 62 </body> |
61 </html> | 63 </html> |
OLD | NEW |