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

Side by Side Diff: remoting/webapp/html/window_frame.html

Issue 386853002: Add a Record button to the web-app if the host supports video recording. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 6 years, 4 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 <div id="title-bar" class="title-bar apps-v2-only"> 6 <div id="title-bar" class="title-bar apps-v2-only">
7 <span class="window-title">&nbsp;</span> 7 <span class="window-title">&nbsp;</span>
8 <span class="window-controls-hover-target"> 8 <span class="window-controls-hover-target">
9 <div class="window-controls"> 9 <div class="window-controls">
10 <span i18n-title="OPTIONS_MENU" 10 <span i18n-title="OPTIONS_MENU"
11 class="window-control window-options menu-button"> 11 class="window-control window-options menu-button">
12 <span class="menu-button-activator"> 12 <span class="menu-button-activator">
13 <img src="icon_options.webp"> 13 <img src="icon_options.webp">
14 </span> 14 </span>
15 <ul class="window-options-menu right-align"> 15 <ul class="window-options-menu right-align">
16 <li class="menu-start-stop-recording"
17 i18n-content="START_STOP_RECORDING" hidden></li>
Jamie 2014/08/01 01:28:37 New line for hidden, please.
Wez 2014/08/19 21:19:00 Done.
16 <li class="menu-send-ctrl-alt-del" 18 <li class="menu-send-ctrl-alt-del"
17 i18n-content="SEND_CTRL_ALT_DEL"></li> 19 i18n-content="SEND_CTRL_ALT_DEL"></li>
18 <li class="menu-send-print-screen" 20 <li class="menu-send-print-screen"
19 i18n-content="SEND_PRINT_SCREEN"></li> 21 i18n-content="SEND_PRINT_SCREEN"></li>
20 <li class="menu-separator"></li> 22 <li class="menu-separator"></li>
21 <li class="menu-resize-to-client" 23 <li class="menu-resize-to-client"
22 i18n-content="RESIZE_TO_CLIENT"></li> 24 i18n-content="RESIZE_TO_CLIENT"></li>
23 <li class="menu-shrink-to-fit" 25 <li class="menu-shrink-to-fit"
24 i18n-content="SHRINK_TO_FIT"></li> 26 i18n-content="SHRINK_TO_FIT"></li>
25 <li class="menu-separator"></li> 27 <li class="menu-separator"></li>
(...skipping 19 matching lines...) Expand all
45 <img src="icon_maximize_restore.webp"> 47 <img src="icon_maximize_restore.webp">
46 </span> 48 </span>
47 <span i18n-title="CLOSE_WINDOW" 49 <span i18n-title="CLOSE_WINDOW"
48 class="window-control window-close"> 50 class="window-control window-close">
49 <img src="icon_close.webp"> 51 <img src="icon_close.webp">
50 </span> 52 </span>
51 </div> 53 </div>
52 <div class="window-controls-stub">&nbsp;</div> 54 <div class="window-controls-stub">&nbsp;</div>
53 </span> 55 </span>
54 </div> 56 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698