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