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

Side by Side Diff: remoting/webapp/html/toolbar.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 (c) 2014 The Chromium Authors. All rights reserved. 2 Copyright (c) 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="session-toolbar" 6 <div id="session-toolbar"
7 data-ui-mode="in-session" 7 data-ui-mode="in-session"
8 class="toolbar-container apps-v1-only" 8 class="toolbar-container apps-v1-only"
9 hidden> 9 hidden>
10 10
11 <div class="toolbar-border"> 11 <div class="toolbar-border">
12 12
13 <div id="session-status-message" 13 <div id="session-status-message"
14 i18n-content="LABEL_CONNECTED"></div> 14 i18n-content="LABEL_CONNECTED"></div>
15 15
16 <div id="connected-to"></div> 16 <div id="connected-to"></div>
17 17
18 <div id="new-connection" class="icon-black apps-v2-only"> 18 <div id="new-connection" class="icon-black apps-v2-only">
19 <img src="plus.webp" i18n-title="NEW_CONNECTION"> 19 <img src="plus.webp" i18n-title="NEW_CONNECTION">
20 </div> 20 </div>
21 21
22 <div class="box-spacer"></div> 22 <div class="box-spacer"></div>
23 23
24 <button id="toolbar-disconnect" 24 <button id="toolbar-disconnect"
25 type="button" 25 type="button"
26 i18n-content="DISCONNECT_MYSELF_BUTTON" 26 i18n-content="DISCONNECT_MYSELF_BUTTON"
27 class="apps-v1-only"> 27 class="apps-v1-only">
28 </button> 28 </button>
29 29
30 <button id="start-stop-recording"
31 type="button"
32 i18n-content="START_STOP_RECORDING" hidden>
Jamie 2014/08/01 01:28:37 New line for hidden, please (one attribute per lin
33 </button>
Jamie 2014/08/01 01:28:37 I'm not quite sure what you mean about only implem
Wez 2014/08/19 00:15:53 Yes, I started with the v1 app, but we really want
34
30 <span class="menu-button" id="send-keys-menu"> 35 <span class="menu-button" id="send-keys-menu">
31 <button class="menu-button-activator"> 36 <button class="menu-button-activator">
32 <span i18n-content="SEND_KEYS"></span> 37 <span i18n-content="SEND_KEYS"></span>
33 <img src="disclosure_arrow_down.webp" 38 <img src="disclosure_arrow_down.webp"
34 class="kd-disclosureindicator"> 39 class="kd-disclosureindicator">
35 </button> 40 </button>
36 <ul> 41 <ul>
37 <li id="send-ctrl-alt-del" i18n-content="SEND_CTRL_ALT_DEL"></li> 42 <li id="send-ctrl-alt-del" i18n-content="SEND_CTRL_ALT_DEL"></li>
38 <li id="send-print-screen" i18n-content="SEND_PRINT_SCREEN"></li> 43 <li id="send-print-screen" i18n-content="SEND_PRINT_SCREEN"></li>
39 </ul> 44 </ul>
(...skipping 25 matching lines...) Expand all
65 </ul> 70 </ul>
66 </span> 71 </span>
67 72
68 </div> 73 </div>
69 74
70 <div class="toolbar-stub" id="toolbar-stub"> 75 <div class="toolbar-stub" id="toolbar-stub">
71 <div class="arrow-down"></div> 76 <div class="arrow-down"></div>
72 </div> 77 </div>
73 78
74 </div> <!-- session-toolbar --> 79 </div> <!-- session-toolbar -->
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698