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

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

Issue 491873004: Add an explicit full-screen button. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@webapp_move_context_menu
Patch Set: Rebase. Created 6 years, 3 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
« no previous file with comments | « remoting/webapp/fullscreen_v2.js ('k') | remoting/webapp/window_frame.css » ('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 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 <div class="window-controls-and-title"> 7 <div class="window-controls-and-title">
8 <span i18n-title="OPTIONS_MENU" 8 <span i18n-title="OPTIONS_MENU"
9 class="window-control window-options menu-button"> 9 class="window-control window-options menu-button">
10 <span class="menu-button-activator"> 10 <span class="menu-button-activator">
(...skipping 28 matching lines...) Expand all
39 </span> 39 </span>
40 <span class="window-title">&nbsp;</span> 40 <span class="window-title">&nbsp;</span>
41 <span i18n-title="MINIMIZE_WINDOW" 41 <span i18n-title="MINIMIZE_WINDOW"
42 class="window-control window-minimize"> 42 class="window-control window-minimize">
43 <img src="icon_minimize.webp"> 43 <img src="icon_minimize.webp">
44 </span> 44 </span>
45 <span i18n-title="MAXIMIZE_WINDOW" 45 <span i18n-title="MAXIMIZE_WINDOW"
46 class="window-control window-maximize-restore"> 46 class="window-control window-maximize-restore">
47 <img src="icon_maximize_restore.webp"> 47 <img src="icon_maximize_restore.webp">
48 </span> 48 </span>
49 <span i18n-title="FULL_SCREEN"
50 class="window-control window-fullscreen">
51 <img src="icon_fullscreen.webp">
52 </span>
49 <span i18n-title="CLOSE_WINDOW" 53 <span i18n-title="CLOSE_WINDOW"
50 class="window-control window-close"> 54 class="window-control window-close">
51 <img src="icon_close.webp"> 55 <img src="icon_close.webp">
52 </span> 56 </span>
53 </div> 57 </div>
54 <div class="window-controls-stub">&nbsp;</div> 58 <div class="window-controls-stub">&nbsp;</div>
55 </div> <!-- title-bar --> 59 </div> <!-- title-bar -->
OLDNEW
« no previous file with comments | « remoting/webapp/fullscreen_v2.js ('k') | remoting/webapp/window_frame.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698