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

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

Issue 1400183002: VideoPlayer: Use system header. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 2 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
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 6
7 <html> 7 <html>
8 <head> 8 <head>
9 <title>#xFEFF;</title> 9 <title>#xFEFF;</title>
10 <link rel="icon" type="image/png" href="images/icon/video-player-favicon32.png "> 10 <link rel="icon" type="image/png" href="images/icon/video-player-favicon32.png ">
11 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css"> 11 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css">
12 <link rel="stylesheet" type="text/css" href="css/media_controls.css"> 12 <link rel="stylesheet" type="text/css" href="css/media_controls.css">
13 <link rel="stylesheet" href="chrome://resources/css/menu.css"> 13 <link rel="stylesheet" href="chrome://resources/css/menu.css">
14 14
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 <link rel="stylesheet" type="text/css" href="css/header.css">
17 <link rel="stylesheet" type="text/css" href="css/arrow_box.css"> 16 <link rel="stylesheet" type="text/css" href="css/arrow_box.css">
18 <link rel="stylesheet" type="text/css" href="css/cast_menu.css"> 17 <link rel="stylesheet" type="text/css" href="css/cast_menu.css">
19 18
20 <script src="js/video_player_scripts.js"></script> 19 <script src="js/video_player_scripts.js"></script>
21 </head> 20 </head>
22 <body> 21 <body>
23 <div id="video-player" tools> 22 <div id="video-player" tools>
24 <cr-menu id='cast-menu' class='cast-menu tool' 23 <cr-menu id='cast-menu' class='cast-menu tool'
25 i18n-values="playon-text:VIDEO_PLAYER_PLAY_ON"></cr-menu> 24 i18n-values="playon-text:VIDEO_PLAYER_PLAY_ON"></cr-menu>
26 <div id="cast-container"> 25 <div id="cast-container">
27 <div id="cast-info"> 26 <div id="cast-info">
28 <div class="first-line" id='cast-name-label' 27 <div class="first-line" id='cast-name-label'
29 i18n-content="VIDEO_PLAYER_PLAYING_ON"></div> 28 i18n-content="VIDEO_PLAYER_PLAYING_ON"></div>
30 <div class="second-line" id="cast-name"></div> 29 <div class="second-line" id="cast-name"></div>
31 </div> 30 </div>
32 </div> 31 </div>
33 <div id="thumbnail"></div> 32 <div id="thumbnail"></div>
34 <div id="video-container"> 33 <div id="video-container">
35 </div> 34 </div>
36 <div id="spinner-container"> 35 <div id="spinner-container">
37 <div class="spinner"></div> 36 <div class="spinner"></div>
38 </div> 37 </div>
39 <div id="header-container" class="header tool">
40 <div id="title">&nbsp;</div>
41 <button class="minimize-button tool" tabindex="-1"></button>
42 <button class="maximize-button tool" tabindex="-1"></button>
43 <button class="close-button tool" tabindex="-1"></button>
44 </div>
45 <div id="controls-wrapper"> 38 <div id="controls-wrapper">
46 <div id="controls" class="tool"></div> 39 <div id="controls" class="tool"></div>
47 </div> 40 </div>
48 <div class="arrow-box"> 41 <div class="arrow-box">
49 <div class="arrow left tool"><div></div></div> 42 <div class="arrow left tool"><div></div></div>
50 <div class="arrow-spacer"></div> 43 <div class="arrow-spacer"></div>
51 <div class="arrow right tool"><div></div></div> 44 <div class="arrow right tool"><div></div></div>
52 </div> 45 </div>
53 <div id="error-wrapper"> 46 <div id="error-wrapper">
54 <div id="error"></div> 47 <div id="error"></div>
55 </div> 48 </div>
56 </div> 49 </div>
57 </body> 50 </body>
58 </html> 51 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698