| 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" type="text/css" href="css/audio_player.css"> | 15 <link rel="stylesheet" type="text/css" href="css/audio_player.css"> |
| 15 | 16 |
| 16 <!-- Don't load mediaplayer_scripts.js when flattening is disabled --> | 17 <!-- Don't load mediaplayer_scripts.js when flattening is disabled --> |
| 17 <if expr="False"><!-- </if> | 18 <if expr="False"><!-- </if> |
| 18 <script src="js/audio_player_scripts.js"></script> | 19 <script src="js/audio_player_scripts.js"></script> |
| 19 <if expr="False"> --></if> | 20 <if expr="False"> --></if> |
| 20 <if expr="False"> | 21 <if expr="False"> |
| 21 <!-- This section is used when the file manager is loaded with | 22 <!-- This section is used when the file manager is loaded with |
| 22 'filemgr-ext-path' command-line flag. --> | 23 'filemgr-ext-path' command-line flag. --> |
| 23 <!-- Keep the list in sync with audio_player_scripts.js. --> | 24 <!-- Keep the list in sync with audio_player_scripts.js. --> |
| (...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 196 <audio id="audio"></audio> | 197 <audio id="audio"></audio> |
| 197 </template> | 198 </template> |
| 198 </polymer-element> | 199 </polymer-element> |
| 199 | 200 |
| 200 <div class="audio-player"> | 201 <div class="audio-player"> |
| 201 <!-- Place the audio player. --> | 202 <!-- Place the audio player. --> |
| 202 <audio-player></audio-player> | 203 <audio-player></audio-player> |
| 203 </div> | 204 </div> |
| 204 </body> | 205 </body> |
| 205 </html> | 206 </html> |
| OLD | NEW |