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

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

Issue 196383030: [VideoPlayer] dedicated video player app (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Adressed the comment Created 6 years, 9 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
(Empty)
1 <!--
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
4 -- found in the LICENSE file.
5 -->
6 <html>
7 <head>
8 <title>#xFEFF;</title>
9 <link rel="icon" type="image/png" href="images/200/icon.png">
10 <link rel="stylesheet" type="text/css"
11 href="../file_manager/foreground/css/media_controls.css">
12 <link rel="stylesheet" type="text/css" href="css/video_player.css">
13
14 <script src="js/video_player_scripts.js"></script>
15 </head>
16 <body>
17 <div id="video-player" tools>
18 <div id="video-container">
19 </div>
20 <div id="controls-wrapper">
21 <div id="controls" class="tool"></div>
22 </div>
23 <div id="error-wrapper">
24 <div id="error"></div>
25 </div>
26 </div>
27 </body>
28 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698