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

Side by Side Diff: extensions/renderer/resources/window_controls_template.html

Issue 534163002: Move app.window API implementation to extensions (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix OWNERS 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 | « extensions/renderer/resources/window_controls.js ('k') | extensions/shell/app_shell.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <template id="window-controls-template"> 1 <template id="window-controls-template">
2 <style> 2 <style>
3 .controls { 3 .controls {
4 width:32px; 4 width:32px;
5 height:32px; 5 height:32px;
6 position:absolute; 6 position:absolute;
7 z-index:200; 7 z-index:200;
8 } 8 }
9 #close-control { 9 #close-control {
10 top:8px; 10 top:8px;
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 </style> 43 </style>
44 <div id="close-control" class="controls"> 44 <div id="close-control" class="controls">
45 <div id="close" class="windowbutton"> </div> 45 <div id="close" class="windowbutton"> </div>
46 <div id="close-background" class="windowbuttonbackground"> </div> 46 <div id="close-background" class="windowbuttonbackground"> </div>
47 </div> 47 </div>
48 <div id="maximize-control" class="controls"> 48 <div id="maximize-control" class="controls">
49 <div id="maximize" class="windowbutton"></div> 49 <div id="maximize" class="windowbutton"></div>
50 <div id="maximize-background" class="windowbuttonbackground"></div> 50 <div id="maximize-background" class="windowbuttonbackground"></div>
51 </div> 51 </div>
52 </template> 52 </template>
OLDNEW
« no previous file with comments | « extensions/renderer/resources/window_controls.js ('k') | extensions/shell/app_shell.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698