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

Side by Side Diff: chrome/browser/resources/settings/appearance_page/appearance_page.html

Issue 2414213002: MD Settings: use theme homepage URLs when set (Closed)
Patch Set: ensure always CWS Created 4 years, 2 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 | « no previous file | chrome/browser/resources/settings/appearance_page/appearance_page.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> 1 <link rel="import" href="chrome://resources/html/i18n_behavior.html">
2 <link rel="import" href="chrome://resources/html/polymer.html"> 2 <link rel="import" href="chrome://resources/html/polymer.html">
3 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/classe s/iron-flex-layout.html"> 3 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/classe s/iron-flex-layout.html">
4 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani matable.html"> 4 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani matable.html">
5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt on.html"> 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt on.html">
6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button-light.html"> 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button-light.html">
7 <link rel="import" href="/appearance_page/appearance_browser_proxy.html"> 7 <link rel="import" href="/appearance_page/appearance_browser_proxy.html">
8 <link rel="import" href="/controls/controlled_radio_button.html"> 8 <link rel="import" href="/controls/controlled_radio_button.html">
9 <link rel="import" href="/controls/settings_dropdown_menu.html"> 9 <link rel="import" href="/controls/settings_dropdown_menu.html">
10 <link rel="import" href="/controls/settings_input.html"> 10 <link rel="import" href="/controls/settings_input.html">
(...skipping 24 matching lines...) Expand all
35 <div class="settings-box first two-line" id="wallpaperButton" 35 <div class="settings-box first two-line" id="wallpaperButton"
36 on-tap="openWallpaperManager_" actionable 36 on-tap="openWallpaperManager_" actionable
37 hidden="[[!pageVisibility.setWallpaper]]"> 37 hidden="[[!pageVisibility.setWallpaper]]">
38 <div class="start"> 38 <div class="start">
39 $i18n{setWallpaper} 39 $i18n{setWallpaper}
40 <div class="secondary">$i18n{openWallpaperApp}</div> 40 <div class="secondary">$i18n{openWallpaperApp}</div>
41 </div> 41 </div>
42 <button class="icon-external" is="paper-icon-button-light"></button> 42 <button class="icon-external" is="paper-icon-button-light"></button>
43 </div> 43 </div>
44 <div class="settings-box two-line" 44 <div class="settings-box two-line"
45 hidden="[[!pageVisibility.setTheme]]" actionable> 45 hidden="[[!pageVisibility.setTheme]]">
46 </if> 46 </if>
47 <if expr="not chromeos"> 47 <if expr="not chromeos">
48 <div class="settings-box two-line first" 48 <div class="settings-box two-line first"
49 hidden="[[!pageVisibility.setTheme]]" actionable> 49 hidden="[[!pageVisibility.setTheme]]">
50 </if> 50 </if>
51 <div class="start two-line" on-tap="openThemesGallery_"> 51 <div class="start two-line" on-tap="onThemesTap_" actionable>
52 <div class="flex"> 52 <div class="flex">
53 <div>$i18n{themes}</div> 53 <div>$i18n{themes}</div>
54 <div class="secondary">[[themeSublabel_]]</div> 54 <div class="secondary">[[themeSublabel_]]</div>
55 </div> 55 </div>
56 <button class="icon-external" is="paper-icon-button-light"></button> 56 <button class="icon-external" is="paper-icon-button-light"></button>
57 </div> 57 </div>
58 <if expr="not is_linux or chromeos"> 58 <if expr="not is_linux or chromeos">
59 <template is="dom-if" if="[[prefs.extensions.theme.id.value]]"> 59 <template is="dom-if" if="[[prefs.extensions.theme.id.value]]">
60 <div class="secondary-action"> 60 <div class="secondary-action">
61 <paper-button id="useDefault" on-tap="onUseDefaultTap_" 61 <paper-button id="useDefault" on-tap="onUseDefaultTap_"
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
156 associated-control="[[$$('#customize-fonts-subpage-trigger')]]" 156 associated-control="[[$$('#customize-fonts-subpage-trigger')]]"
157 page-title="$i18n{customizeFonts}"> 157 page-title="$i18n{customizeFonts}">
158 <settings-appearance-fonts-page prefs="{{prefs}}"> 158 <settings-appearance-fonts-page prefs="{{prefs}}">
159 </settings-appearance-fonts-page> 159 </settings-appearance-fonts-page>
160 </settings-subpage> 160 </settings-subpage>
161 </template> 161 </template>
162 </settings-animated-pages> 162 </settings-animated-pages>
163 </template> 163 </template>
164 <script src="appearance_page.js"></script> 164 <script src="appearance_page.js"></script>
165 </dom-module> 165 </dom-module>
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/settings/appearance_page/appearance_page.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698