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

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

Issue 265393005: Implement apps v2 custom window frame. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 6 years, 7 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
« no previous file with comments | « remoting/webapp/html/template_main.html ('k') | remoting/webapp/html/window_frame.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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" 8 class="toolbar-container"
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 </button> 28 </button>
28 29
29 <span class="menu-button" id="send-keys-menu"> 30 <span class="menu-button" id="send-keys-menu">
30 <button class="menu-button-activator"> 31 <button class="menu-button-activator">
31 <span i18n-content="SEND_KEYS"></span> 32 <span i18n-content="SEND_KEYS"></span>
32 <img src="disclosure_arrow_down.webp" 33 <img src="disclosure_arrow_down.webp"
33 class="kd-disclosureindicator"> 34 class="kd-disclosureindicator">
34 </button> 35 </button>
35 <ul> 36 <ul>
36 <li id="send-ctrl-alt-del" i18n-content="SEND_CTRL_ALT_DEL"></li> 37 <li id="send-ctrl-alt-del" i18n-content="SEND_CTRL_ALT_DEL"></li>
37 <li id="send-print-screen" i18n-content="SEND_PRINT_SCREEN"></li> 38 <li id="send-print-screen" i18n-content="SEND_PRINT_SCREEN"></li>
38 </ul> 39 </ul>
39 </span> 40 </span>
40 41
41 <span class="menu-button" id="screen-options-menu"> 42 <span class="menu-button" id="screen-options-menu">
42 <button class="menu-button-activator"> 43 <button class="menu-button-activator">
43 <span i18n-content="SCREEN_OPTIONS"></span> 44 <span i18n-content="SCREEN_OPTIONS"></span>
44 <img src="disclosure_arrow_down.webp" 45 <img src="disclosure_arrow_down.webp"
45 class="kd-disclosureindicator"> 46 class="kd-disclosureindicator">
46 </button> 47 </button>
47 <ul> 48 <ul>
48 <li id="screen-resize-to-client" 49 <li id="screen-resize-to-client"
49 i18n-content="RESIZE_TO_CLIENT"></li> 50 i18n-content="RESIZE_TO_CLIENT"></li>
50 <li id="screen-shrink-to-fit" i18n-content="SHRINK_TO_FIT"></li> 51 <li id="screen-shrink-to-fit"
51 <li class="menu-separator"></li> 52 i18n-content="SHRINK_TO_FIT"></li>
52 <li id="toggle-full-screen" i18n-content="FULL_SCREEN"></li> 53 <li class="menu-separator apps-v1-only"></li>
54 <li id="toggle-full-screen"
55 i18n-content="FULL_SCREEN"
56 class="apps-v1-only"></li>
53 </ul> 57 </ul>
54 </span> 58 </span>
55 59
56 <span class="menu-button" id="help-feedback-toolbar"> 60 <span class="menu-button" id="help-feedback-toolbar">
57 <img src="icon_help.webp" class="menu-button-activator help-icon"> 61 <img src="icon_help.webp" class="menu-button-activator help-icon">
58 <ul class="right-align"> 62 <ul class="right-align">
59 <li id="help-toolbar" i18n-content="HELP"></li> 63 <li id="help-toolbar" i18n-content="HELP"></li>
60 <li id="send-feedback-toolbar" i18n-content="ACTIONBAR_FEEDBACK"></li> 64 <li id="send-feedback-toolbar" i18n-content="ACTIONBAR_FEEDBACK"></li>
61 </ul> 65 </ul>
62 </span> 66 </span>
63 67
64 </div> 68 </div>
65 69
66 <div class="toolbar-stub" id="toolbar-stub"> 70 <div class="toolbar-stub" id="toolbar-stub">
67 <div class="arrow-down"></div> 71 <div class="arrow-down"></div>
68 </div> 72 </div>
69 73
70 </div> <!-- session-toolbar --> 74 </div> <!-- session-toolbar -->
OLDNEW
« no previous file with comments | « remoting/webapp/html/template_main.html ('k') | remoting/webapp/html/window_frame.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698