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

Side by Side Diff: chrome/browser/resources/options2/browser_options.html

Issue 9580023: Enable user change background image in settings page in Aura build. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Save user choosed index to local state Created 8 years, 9 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 <div id="settings" class="page" hidden> 1 <div id="settings" class="page" hidden>
2 <header> 2 <header>
3 <h1 i18n-content="settingsTitle"></h1> 3 <h1 i18n-content="settingsTitle"></h1>
4 <span id="browser-options-search-field-container" 4 <span id="browser-options-search-field-container"
5 class="search-field-container"> 5 class="search-field-container">
6 <input id="search-field" type="search" 6 <input id="search-field" type="search"
7 i18n-values="placeholder:searchPlaceholder; 7 i18n-values="placeholder:searchPlaceholder;
8 aria-label:searchPlaceholder" incremental> 8 aria-label:searchPlaceholder" incremental>
9 </span> 9 </span>
10 </header> 10 </header>
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
91 i18n-content="startupSetPages"> 91 i18n-content="startupSetPages">
92 </button> 92 </button>
93 </span> 93 </span>
94 </label> 94 </label>
95 </div> 95 </div>
96 </div> 96 </div>
97 </section> 97 </section>
98 </if> 98 </if>
99 <section> 99 <section>
100 <h3 i18n-content="sectionTitleAppearance"></h3> 100 <h3 i18n-content="sectionTitleAppearance"></h3>
101 <div>
102 <if expr="pp_ifdef('use_ash')">
103 <button id="set-wallpaper" i18n-content="setWallpaper"></button>
104 </if>
101 <if expr="not pp_ifdef('toolkit_views') and is_posix and not is_macosx"> 105 <if expr="not pp_ifdef('toolkit_views') and is_posix and not is_macosx">
102 <div>
103 <button id="themes-gallery" i18n-content="themesGallery"></button> 106 <button id="themes-gallery" i18n-content="themesGallery"></button>
104 <button id="themes-GTK-button" 107 <button id="themes-GTK-button"
105 i18n-content="themesGTKButton"></button> 108 i18n-content="themesGTKButton"></button>
106 <button id="themes-reset" 109 <button id="themes-reset"
107 i18n-content="themesSetClassic"></button> 110 i18n-content="themesSetClassic"></button>
108 </div>
109 </if> 111 </if>
110 <if expr="pp_ifdef('toolkit_views') or is_win or is_macosx"> 112 <if expr="pp_ifdef('toolkit_views') or is_win or is_macosx">
111 <div>
112 <button id="themes-gallery" i18n-content="themesGallery"></button> 113 <button id="themes-gallery" i18n-content="themesGallery"></button>
113 <button id="themes-reset" i18n-content="themesReset"></button> 114 <button id="themes-reset" i18n-content="themesReset"></button>
115 </if>
114 </div> 116 </div>
115 </if>
116 <div class="settings-row"> 117 <div class="settings-row">
117 <span i18n-content="homePage"></span> 118 <span i18n-content="homePage"></span>
118 <select id="home-page-select"> 119 <select id="home-page-select">
119 <option value="none" i18n-content="homePageNone"></option> 120 <option value="none" i18n-content="homePageNone"></option>
120 <option value="ntp" i18n-content="homePageNtp"></option> 121 <option value="ntp" i18n-content="homePageNtp"></option>
121 <option value="url"></option> 122 <option value="url"></option>
122 <option value="choose" i18n-content="homePageChoose"></option> 123 <option value="choose" i18n-content="homePageChoose"></option>
123 </select> 124 </select>
124 </div> 125 </div>
125 <div class="checkbox"><label> 126 <div class="checkbox"><label>
(...skipping 523 matching lines...) Expand 10 before | Expand all | Expand 10 after
649 </section> 650 </section>
650 </if> 651 </if>
651 </div> <!-- advanced-settings-container --> 652 </div> <!-- advanced-settings-container -->
652 </div> <!-- advanced-settings --> 653 </div> <!-- advanced-settings -->
653 <footer> 654 <footer>
654 <button id="advanced-settings-expander" class="link-button" 655 <button id="advanced-settings-expander" class="link-button"
655 i18n-content="showAdvancedSettings"> 656 i18n-content="showAdvancedSettings">
656 </button> 657 </button>
657 </footer> 658 </footer>
658 </div> 659 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698