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

Side by Side Diff: chrome/browser/resources/file_manager/mediaplayer.html

Issue 10917188: Make Chrome OS Audio Player survive page reload and OS restart. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Removed debug trace Created 8 years, 3 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 | Annotate | Revision Log
« no previous file with comments | « chrome/browser/resources/file_manager/js/mock_chrome.js ('k') | no next file » | 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 (c) 2012 The Chromium Authors. All rights reserved. 2 -- Copyright (c) 2012 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="icon" type="image/png" href="images/media/audio_player.png"> 14 <link rel="icon" type="image/png" href="images/media/audio_player.png">
15 <link rel="stylesheet" type="text/css" href="css/media_controls.css"> 15 <link rel="stylesheet" type="text/css" href="css/media_controls.css">
16 <link rel="stylesheet" type="text/css" href="css/audio_player.css"> 16 <link rel="stylesheet" type="text/css" href="css/audio_player.css">
17 17
18 <script src="js/media/mediaplayer_scripts.js"></script> 18 <script src="js/media/mediaplayer_scripts.js"></script>
19 19
20 <if expr="0"> 20 <if expr="0">
21 <!-- This file has not been flattened, load individual scripts. 21 <!-- This file has not been flattened, load individual scripts.
22 Keep the list in sync with mediaplayer_scripts.js. --> 22 Keep the list in sync with mediaplayer_scripts.js. -->
23 <script src="js/file_type.js"></script> 23 <script src="js/file_type.js"></script>
24 <script src="js/media/media_controls.js"></script>
24 <script src="js/media/audio_player.js"></script> 25 <script src="js/media/audio_player.js"></script>
25 <script src="js/media/media_controls.js"></script>
26 <script src="js/metadata/metadata_cache.js"></script> 26 <script src="js/metadata/metadata_cache.js"></script>
27 </if> 27 </if>
28 </head> 28 </head>
29 <body> 29 <body>
30 <div class="audio-player"></div> 30 <div class="audio-player"></div>
31 </body> 31 </body>
32 </html> 32 </html>
OLDNEW
« no previous file with comments | « chrome/browser/resources/file_manager/js/mock_chrome.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698