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

Side by Side Diff: chrome/browser/resources/chromeos/wallpaper_manager/main.html

Issue 10890038: Hook up custom wallpaper code path to new wallpaper picker. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merge to trunk Created 8 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 | Annotate | Revision Log
OLDNEW
1 <!DOCTYPE HTML> 1 <!DOCTYPE HTML>
2 <!-- 2 <!--
3 ------ 3 ------
4 Copyright (c) 2012 The Chromium Authors. All rights reserved. 4 Copyright (c) 2012 The Chromium Authors. All rights reserved.
5 Use of this source code is governed by a BSD-style license that can be 5 Use of this source code is governed by a BSD-style license that can be
6 found in the LICENSE file. 6 found in the LICENSE file.
7 --> 7 -->
8 <html i18n-values="dir:textdirection;"> 8 <html i18n-values="dir:textdirection;">
9 <head> 9 <head>
10 <title>Placeholder for Wallpaper Manager Main page</title> 10 <title>Placeholder for Wallpaper Manager Main page</title>
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
56 <a id="author-website"></a> 56 <a id="author-website"></a>
57 </div> 57 </div>
58 </div> 58 </div>
59 <div class="spacer"></div> 59 <div class="spacer"></div>
60 </div> 60 </div>
61 </div> 61 </div>
62 <div id="custom-container" hidden> 62 <div id="custom-container" hidden>
63 <div i18n-content="selectCustomLabel"></div> 63 <div i18n-content="selectCustomLabel"></div>
64 <input id="file-selector" type="file"> 64 <input id="file-selector" type="file">
65 <div i18n-content="positionLabel"></div> 65 <div i18n-content="positionLabel"></div>
66 <select> 66 <select id="set-wallpaper-layout">
67 <option>Fill Screen</option> 67 <option value="CENTER" i18n-content="centerLayout"></option>
68 <option>Center</option> 68 <option selected="selected" value="CENTER_CROPPED"
69 <option>Stretch</option> 69 i18n-content="centerCroppedLayout"></option>
70 <option value="STRETCH" i18n-content="stretchLayout"></option>
70 </select> 71 </select>
71 <div i18n-content="previewLabel"></div> 72 <div i18n-content="previewLabel"></div>
72 <img id="preview"> 73 <img id="preview">
73 </div> 74 </div>
74 </div> 75 </div>
75 </div> 76 </div>
76 </body> 77 </body>
77 </html> 78 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698