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

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

Issue 2484423004: [MD settings] settings for pdf documents (Closed)
Patch Set: made method private Created 4 years, 1 month 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
OLDNEW
1 <link rel="import" href="chrome://resources/html/polymer.html"> 1 <link rel="import" href="chrome://resources/html/polymer.html">
2 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button-light.html"> 2 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button-light.html">
3 <link rel="import" href="/icons.html"> 3 <link rel="import" href="/icons.html">
4 <link rel="import" href="/route.html"> 4 <link rel="import" href="/route.html">
5 <link rel="import" href="/settings_shared_css.html"> 5 <link rel="import" href="/settings_shared_css.html">
6 <link rel="import" href="/site_settings/constants.html"> 6 <link rel="import" href="/site_settings/constants.html">
7 <link rel="import" href="/site_settings/site_settings_behavior.html"> 7 <link rel="import" href="/site_settings/site_settings_behavior.html">
8 <link rel="import" href="/site_settings/site_settings_prefs_browser_proxy.html"> 8 <link rel="import" href="/site_settings/site_settings_prefs_browser_proxy.html">
9 9
10 <dom-module id="settings-site-settings-page"> 10 <dom-module id="settings-site-settings-page">
(...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after
191 </div> 191 </div>
192 <div class="settings-box" category$="[[ContentSettingsTypes.USB_DEVICES]]" 192 <div class="settings-box" category$="[[ContentSettingsTypes.USB_DEVICES]]"
193 on-tap="onTapCategory" actionable> 193 on-tap="onTapCategory" actionable>
194 <iron-icon icon="[[computeIconForContentCategory( 194 <iron-icon icon="[[computeIconForContentCategory(
195 ContentSettingsTypes.USB_DEVICES)]]"></iron-icon> 195 ContentSettingsTypes.USB_DEVICES)]]"></iron-icon>
196 <div class="middle"> 196 <div class="middle">
197 [[computeTitleForContentCategory(ContentSettingsTypes.USB_DEVICES)]] 197 [[computeTitleForContentCategory(ContentSettingsTypes.USB_DEVICES)]]
198 </div> 198 </div>
199 <button class="subpage-arrow" is="paper-icon-button-light"></button> 199 <button class="subpage-arrow" is="paper-icon-button-light"></button>
200 </div> 200 </div>
201 <div class="settings-box" data-route="SITE_SETTINGS_PDF_DOCUMENTS"
202 on-tap="onTapNavigate_" actionable>
203 <iron-icon icon="settings:pdf"></iron-icon>
204 <div class="middle">$i18n{siteSettingsPdfDocuments}</div>
205 <button class="subpage-arrow" is="paper-icon-button-light"></button>
206 </div>
201 </template> 207 </template>
202 <script src="site_settings_page.js"></script> 208 <script src="site_settings_page.js"></script>
203 </dom-module> 209 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698