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

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

Issue 842813002: Avoid hardcoded font families. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 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/css/audio_player.css » ('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" 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
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>
OLDNEW
« no previous file with comments | « no previous file | ui/file_manager/audio_player/css/audio_player.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698