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

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

Issue 10068007: Implement Content Security Policy for the File Manager (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 8 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
OLDNEW
1 <!--
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
4 -- found in the LICENSE file.
5 -->
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" 6 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
2 "http://www.w3.org/TR/html4/loose.dtd"> 7 "http://www.w3.org/TR/html4/loose.dtd">
3 <html> 8 <html>
4 <head> 9 <head>
5 <link rel="icon" type="image/png" href="images/media/audio_player.png"/> 10 <link rel="icon" type="image/png" href="images/media/audio_player.png"/>
6 <link rel="stylesheet" type="text/css" href="css/media_controls.css"/> 11 <link rel="stylesheet" type="text/css" href="css/media_controls.css"/>
7 <link rel="stylesheet" type="text/css" href="css/audio_player.css"/> 12 <link rel="stylesheet" type="text/css" href="css/audio_player.css"/>
8 13
9 <script src="js/media/audio_player.js"></script> 14 <script src="js/media/mediaplayer_scripts.js"></script>
10 <script src="js/media/media_controls.js"></script> 15
11 <script src="js/metadata/metadata_provider.js"></script> 16 <if expr="0">
17 <!-- This file has not been flattened, load individual scripts.
18 Keep the list in sync with mediaplayer_scripts.js. -->
19 <script src="js/media/audio_player.js"></script>
20 <script src="js/media/media_controls.js"></script>
21 <script src="js/metadata/metadata_provider.js"></script>
22 </if>
12 </head> 23 </head>
13 <body> 24 <body>
14 <div class="audio-player"></div> 25 <div class="audio-player"></div>
15 </body> 26 </body>
16 </html> 27 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698