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

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

Issue 313273002: Video Player: Supports multiple files (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 6 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 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 <html> 6 <html>
7 <head> 7 <head>
8 <title>#xFEFF;</title> 8 <title>#xFEFF;</title>
9 <link rel="icon" type="image/png" href="images/200/icon.png"> 9 <link rel="icon" type="image/png" href="images/200/icon.png">
10 <link rel="stylesheet" type="text/css" 10 <link rel="stylesheet" type="text/css"
11 href="../file_manager/foreground/css/media_controls.css"> 11 href="../file_manager/foreground/css/media_controls.css">
12 <link rel="stylesheet" type="text/css" href="css/video_player.css"> 12 <link rel="stylesheet" type="text/css" href="css/video_player.css">
13 <link rel="stylesheet" type="text/css" href="css/header.css"> 13 <link rel="stylesheet" type="text/css" href="css/header.css">
14 <link rel="stylesheet" type="text/css" href="css/arrow_box.css">
14 15
15 <script src="js/video_player_scripts.js"></script> 16 <script src="js/video_player_scripts.js"></script>
16 </head> 17 </head>
17 <body> 18 <body>
18 <div id="video-player" tools> 19 <div id="video-player" tools>
19 <div id="video-container"> 20 <div id="video-container">
20 </div> 21 </div>
21 <div id="header-container" class="header tool"> 22 <div id="header-container" class="header tool">
22 <div id="title">&nbsp;</div> 23 <div id="title">&nbsp;</div>
23 <button class="minimize-button tool" tabindex="-1"></button> 24 <button class="minimize-button tool" tabindex="-1"></button>
24 <button class="maximize-button tool" tabindex="-1"></button> 25 <button class="maximize-button tool" tabindex="-1"></button>
25 <button class="close-button tool" tabindex="-1"></button> 26 <button class="close-button tool" tabindex="-1"></button>
26 </div> 27 </div>
27 <div id="controls-wrapper"> 28 <div id="controls-wrapper">
28 <div id="controls" class="tool"></div> 29 <div id="controls" class="tool"></div>
29 </div> 30 </div>
31 <div class="arrow-box">
32 <div class="arrow left tool"><div></div></div>
33 <div class="arrow-spacer"></div>
34 <div class="arrow right tool"><div></div></div>
35 </div>
30 <div id="error-wrapper"> 36 <div id="error-wrapper">
31 <div id="error"></div> 37 <div id="error"></div>
32 </div> 38 </div>
33 </div> 39 </div>
34 </body> 40 </body>
35 </html> 41 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698