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

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

Issue 1164983003: AudioPlayer.app: Use HTML Imports to define custom elements. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 6 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
OLDNEW
(Empty)
1 <!--
2 -- Copyright 2015 The Chromium Authors. All rights reserved.
3 -- Use of this source code is governed by a BSD-style license that can be
4 -- found in the LICENSE file.
5 -->
6
7 <link rel="import" href="chrome://resources/polymer/polymer/polymer.html">
8 <link rel="import" href="track_list.html">
9 <link rel="import" href="control_panel.html">
10
11 <polymer-element name="audio-player"
12 attributes="playing currenttrackurl playcount">
13 <template>
14 <link rel="stylesheet" href="audio_player.css">
15
16 <track-list id="trackList" expanded?="{{model.expanded}}"
17 on-replay="{{onReplayCurrentTrack}}"></track-list>
18 <control-panel id="audioController"
19 on-next-clicked="{{onControllerNextClicked}}"
20 on-previous-clicked="{{onControllerPreviousClicked}}">
21 </control-panel>
22 <audio id="audio"></audio>
23 </template>
24 <script src="audio_player.js"></script>
25 </polymer-element>
OLDNEW
« no previous file with comments | « ui/file_manager/audio_player/audio_player.html ('k') | ui/file_manager/audio_player/elements/control_panel.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698