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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/chromeos/wallpaper_manager/main.html
diff --git a/chrome/browser/resources/chromeos/wallpaper_manager/main.html b/chrome/browser/resources/chromeos/wallpaper_manager/main.html
index 48dc4c44858219aab92bcca8dd5081737ab16026..f897134ac8ceb6eb207bf93723a05b492c68ce1b 100644
--- a/chrome/browser/resources/chromeos/wallpaper_manager/main.html
+++ b/chrome/browser/resources/chromeos/wallpaper_manager/main.html
@@ -63,10 +63,11 @@ found in the LICENSE file.
<div i18n-content="selectCustomLabel"></div>
<input id="file-selector" type="file">
<div i18n-content="positionLabel"></div>
- <select>
- <option>Fill Screen</option>
- <option>Center</option>
- <option>Stretch</option>
+ <select id="set-wallpaper-layout">
+ <option value="CENTER" i18n-content="centerLayout"></option>
+ <option selected="selected" value="CENTER_CROPPED"
+ i18n-content="centerCroppedLayout"></option>
+ <option value="STRETCH" i18n-content="stretchLayout"></option>
</select>
<div i18n-content="previewLabel"></div>
<img id="preview">

Powered by Google App Engine
This is Rietveld 408576698