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

Side by Side Diff: ui/file_manager/audio_player/audio_player.html

Issue 936243004: Files.app: Start to use new metadata model in Audio Player. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased. Created 5 years, 10 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
« no previous file with comments | « no previous file | ui/file_manager/audio_player/js/audio_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 <!-- 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>&#xFEFF;</title> 13 <title>&#xFEFF;</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 16
17 <!-- Don't load mediaplayer_scripts.js when flattening is disabled --> 17 <!-- Don't load mediaplayer_scripts.js when flattening is disabled -->
18 <if expr="False"><!-- </if> 18 <if expr="False"><!-- </if>
19 <script src="js/audio_player_scripts.js"></script> 19 <script src="js/audio_player_scripts.js"></script>
20 <if expr="False"> --></if> 20 <if expr="False"> --></if>
21 <if expr="False"> 21 <if expr="False">
22 <!-- This section is used when the file manager is loaded with 22 <!-- This section is used when the file manager is loaded with
23 'filemgr-ext-path' command-line flag. --> 23 'filemgr-ext-path' command-line flag. -->
24 <!-- Keep the list in sync with audio_player_scripts.js. --> 24 <!-- Keep the list in sync with audio_player_scripts.js. -->
25 <script src="../../webui//resources/js/cr.js"></script> 25 <script src="../../webui//resources/js/cr.js"></script>
26 <script src="../../webui/resources/js/cr/event_target.js"></script> 26 <script src="../../webui/resources/js/cr/event_target.js"></script>
27 <script src="../../webui/resources/js/cr/ui/array_data_model.js"> 27 <script src="../../webui/resources/js/cr/ui/array_data_model.js"></script>
28 </script>
29 28
30 <script src="../../../third_party/polymer/polymer/polymer.js"></script> 29 <script src="../../../third_party/polymer/polymer/polymer.js"></script>
31 30
31 <!-- Base classes. -->
32 <script src="../file_manager/foreground/js/metadata/metadata_cache_set.js">< /script>
33 <script src="../file_manager/foreground/js/metadata/new_metadata_provider.js "></script>
34
32 <script src="../file_manager/common/js/async_util.js"></script> 35 <script src="../file_manager/common/js/async_util.js"></script>
33 <script src="../file_manager/common/js/file_type.js"></script> 36 <script src="../file_manager/common/js/file_type.js"></script>
34 <script src="../file_manager/common/js/util.js"></script> 37 <script src="../file_manager/common/js/util.js"></script>
35 <script src="../file_manager/common/js/volume_manager_common.js"></script> 38 <script src="../file_manager/common/js/volume_manager_common.js"></script>
36 <script src="../file_manager/foreground/js/volume_manager_wrapper.js"></scri pt> 39 <script src="../file_manager/foreground/js/volume_manager_wrapper.js"></scri pt>
37 <script src="../file_manager/foreground/js/metadata/metadata_cache.js"></scr ipt> 40
41 <script src="../file_manager/foreground/js/metadata/content_metadata_provide r.js"></script>
42 <script src="../file_manager/foreground/js/metadata/external_metadata_provid er.js"></script>
43 <script src="../file_manager/foreground/js/metadata/file_system_metadata.js" ></script>
44 <script src="../file_manager/foreground/js/metadata/file_system_metadata_pro vider.js"></script>
45 <script src="../file_manager/foreground/js/metadata/metadata_cache_item.js"> </script>
46 <script src="../file_manager/foreground/js/metadata/metadata_item.js"></scri pt>
47 <script src="../file_manager/foreground/js/metadata/thumbnail_model.js"></sc ript>
38 48
39 <script src="js/audio_player.js"></script> 49 <script src="js/audio_player.js"></script>
50 <script src="js/audio_player_model.js"></script>
40 51
41 <script src="elements/track_list.js"></script> 52 <script src="elements/track_list.js"></script>
42 <script src="elements/control_panel.js"></script> 53 <script src="elements/control_panel.js"></script>
43 <script src="elements/volume_controller.js"></script> 54 <script src="elements/volume_controller.js"></script>
44 <script src="elements/audio_player.js"></script> 55 <script src="elements/audio_player.js"></script>
45 </if> 56 </if>
46 </head> 57 </head>
47 <body> 58 <body>
48 <!-- Definition of <track-list> tag. --> 59 <!-- Definition of <track-list> tag. -->
49 <polymer-element name="track-list" attributes="tracks"> 60 <polymer-element name="track-list" attributes="tracks">
(...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after
197 <audio id="audio"></audio> 208 <audio id="audio"></audio>
198 </template> 209 </template>
199 </polymer-element> 210 </polymer-element>
200 211
201 <div class="audio-player"> 212 <div class="audio-player">
202 <!-- Place the audio player. --> 213 <!-- Place the audio player. -->
203 <audio-player></audio-player> 214 <audio-player></audio-player>
204 </div> 215 </div>
205 </body> 216 </body>
206 </html> 217 </html>
OLDNEW
« no previous file with comments | « no previous file | ui/file_manager/audio_player/js/audio_player.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698