OLD | NEW |
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 <html> | 7 <html> |
7 <head> | 8 <head> |
8 <title>#xFEFF;</title> | 9 <title>#xFEFF;</title> |
9 <link rel="icon" type="image/png" href="images/200/icon.png"> | 10 <link rel="icon" type="image/png" href="images/200/icon.png"> |
10 <link rel="stylesheet" type="text/css" | 11 <link rel="stylesheet" type="text/css" |
11 href="../file_manager/foreground/css/media_controls.css"> | 12 href="../file_manager/foreground/css/media_controls.css"> |
| 13 <link rel="stylesheet" href="chrome://resources/css/menu.css"></link> |
| 14 |
12 <link rel="stylesheet" type="text/css" href="css/video_player.css"> | 15 <link rel="stylesheet" type="text/css" href="css/video_player.css"> |
13 <link rel="stylesheet" type="text/css" href="css/header.css"> | 16 <link rel="stylesheet" type="text/css" href="css/header.css"> |
14 <link rel="stylesheet" type="text/css" href="css/arrow_box.css"> | 17 <link rel="stylesheet" type="text/css" href="css/arrow_box.css"> |
| 18 <link rel="stylesheet" type="text/css" href="css/cast_menu.css"> |
15 | 19 |
16 <script src="js/video_player_scripts.js"></script> | 20 <script src="js/video_player_scripts.js"></script> |
17 </head> | 21 </head> |
18 <body> | 22 <body> |
19 <div id="video-player" tools> | 23 <div id="video-player" tools> |
| 24 <menu id='cast-menu' class='cast-menu tool'></menu> |
20 <div id="video-container"> | 25 <div id="video-container"> |
21 </div> | 26 </div> |
22 <div id="header-container" class="header tool"> | 27 <div id="header-container" class="header tool"> |
23 <div id="title"> </div> | 28 <div id="title"> </div> |
| 29 <button class="cast-button menubutton hidden tool" |
| 30 menu="#cast-menu"></button> |
24 <button class="minimize-button tool" tabindex="-1"></button> | 31 <button class="minimize-button tool" tabindex="-1"></button> |
25 <button class="maximize-button tool" tabindex="-1"></button> | 32 <button class="maximize-button tool" tabindex="-1"></button> |
26 <button class="close-button tool" tabindex="-1"></button> | 33 <button class="close-button tool" tabindex="-1"></button> |
27 </div> | 34 </div> |
28 <div id="controls-wrapper"> | 35 <div id="controls-wrapper"> |
29 <div id="controls" class="tool"></div> | 36 <div id="controls" class="tool"></div> |
30 </div> | 37 </div> |
31 <div class="arrow-box"> | 38 <div class="arrow-box"> |
32 <div class="arrow left tool"><div></div></div> | 39 <div class="arrow left tool"><div></div></div> |
33 <div class="arrow-spacer"></div> | 40 <div class="arrow-spacer"></div> |
34 <div class="arrow right tool"><div></div></div> | 41 <div class="arrow right tool"><div></div></div> |
35 </div> | 42 </div> |
36 <div id="error-wrapper"> | 43 <div id="error-wrapper"> |
37 <div id="error"></div> | 44 <div id="error"></div> |
38 </div> | 45 </div> |
39 </div> | 46 </div> |
40 </body> | 47 </body> |
41 </html> | 48 </html> |
OLD | NEW |