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

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

Issue 10916305: Move shared file type images into chrome://theme/ scheme (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase to r156819 (CL 10910202) 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
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 <html> 6 <html>
7 <head> 7 <head>
8 <!-- We have to set some default title, or chrome will use the page name. 8 <!-- We have to set some default title, or chrome will use the page name.
9 -- As soon as the i18n'd strings are loaded we replace it with the correct 9 -- As soon as the i18n'd strings are loaded we replace it with the correct
10 -- string. Until then, use an invisible non-whitespace character. 10 -- string. Until then, use an invisible non-whitespace character.
11 --> 11 -->
12 <title>&#xFEFF;</title> 12 <title>&#xFEFF;</title>
13 <link rel="icon" type="image/png" href="images/files/file_types/video.png"> 13 <link rel="icon" type="image/png" href="chrome://theme/IDR_FILE_MANAGER_IMG_FI LETYPE_VIDEO">
Vladislav Kaznacheev 2012/09/14 17:56:04 Please make a similar change to file_manager/media
benrg 2012/09/14 18:21:18 This CL only moves the images in file_types/, so t
14 <link rel="stylesheet" type="text/css" href="css/media_controls.css"> 14 <link rel="stylesheet" type="text/css" href="css/media_controls.css">
15 <link rel="stylesheet" type="text/css" href="css/video_player.css"> 15 <link rel="stylesheet" type="text/css" href="css/video_player.css">
16 16
17 <script src="js/media/video_player_scripts.js"></script> 17 <script src="js/media/video_player_scripts.js"></script>
18 18
19 <if expr="0"> 19 <if expr="0">
20 <!-- This file has not been flattened, load individual scripts. 20 <!-- This file has not been flattened, load individual scripts.
21 Keep the list in sync with video_player_scripts.js. --> 21 Keep the list in sync with video_player_scripts.js. -->
22 <script src="js/metrics.js"></script> 22 <script src="js/metrics.js"></script>
23 <script src="../shared/js/load_time_data.js"></script> 23 <script src="../shared/js/load_time_data.js"></script>
(...skipping 11 matching lines...) Expand all
35 </div> 35 </div>
36 <div id="controls-wrapper"> 36 <div id="controls-wrapper">
37 <div id="controls" class="tool"></div> 37 <div id="controls" class="tool"></div>
38 </div> 38 </div>
39 <div id="error-wrapper"> 39 <div id="error-wrapper">
40 <div id="error"></div> 40 <div id="error"></div>
41 </div> 41 </div>
42 </div> 42 </div>
43 </body> 43 </body>
44 </html> 44 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698