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

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

Issue 2323693002: Site Settings Desktop: Implement Zoom Levels category. (Closed)
Patch Set: Fix test Created 4 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
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="/icons.html"> 2 <link rel="import" href="/icons.html">
3 <link rel="import" href="/route.html"> 3 <link rel="import" href="/route.html">
4 <link rel="import" href="/settings_shared_css.html"> 4 <link rel="import" href="/settings_shared_css.html">
5 <link rel="import" href="/site_settings/constants.html"> 5 <link rel="import" href="/site_settings/constants.html">
6 <link rel="import" href="/site_settings/site_settings_behavior.html"> 6 <link rel="import" href="/site_settings/site_settings_behavior.html">
7 <link rel="import" href="/site_settings/site_settings_prefs_browser_proxy.html"> 7 <link rel="import" href="/site_settings/site_settings_prefs_browser_proxy.html">
8 8
9 <dom-module id="settings-site-settings-page"> 9 <dom-module id="settings-site-settings-page">
10 <template> 10 <template>
(...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after
152 category$="[[ContentSettingsTypes.PROTOCOL_HANDLERS]]" 152 category$="[[ContentSettingsTypes.PROTOCOL_HANDLERS]]"
153 on-tap="onTapCategory"> 153 on-tap="onTapCategory">
154 <iron-icon icon="[[computeIconForContentCategory( 154 <iron-icon icon="[[computeIconForContentCategory(
155 ContentSettingsTypes.PROTOCOL_HANDLERS)]]"></iron-icon> 155 ContentSettingsTypes.PROTOCOL_HANDLERS)]]"></iron-icon>
156 <div class="middle"> 156 <div class="middle">
157 [[computeTitleForContentCategory( 157 [[computeTitleForContentCategory(
158 ContentSettingsTypes.PROTOCOL_HANDLERS)]] 158 ContentSettingsTypes.PROTOCOL_HANDLERS)]]
159 <div id="handlers" class="secondary"></div> 159 <div id="handlers" class="secondary"></div>
160 </div> 160 </div>
161 </div> 161 </div>
162 <div class="settings-box" category$="[[ContentSettingsTypes.ZOOM_LEVELS]]"
163 on-tap="onTapCategory">
164 <iron-icon icon="[[computeIconForContentCategory(
165 ContentSettingsTypes.ZOOM_LEVELS)]]"></iron-icon>
166 <div class="middle">
167 [[computeTitleForContentCategory(ContentSettingsTypes.ZOOM_LEVELS)]]
168 </div>
169 </div>
162 <div class="settings-box" category$="[[ContentSettingsTypes.USB_DEVICES]]" 170 <div class="settings-box" category$="[[ContentSettingsTypes.USB_DEVICES]]"
163 on-tap="onTapCategory"> 171 on-tap="onTapCategory">
164 <iron-icon icon="[[computeIconForContentCategory( 172 <iron-icon icon="[[computeIconForContentCategory(
165 ContentSettingsTypes.USB_DEVICES)]]"></iron-icon> 173 ContentSettingsTypes.USB_DEVICES)]]"></iron-icon>
166 <div class="middle"> 174 <div class="middle">
167 [[computeTitleForContentCategory(ContentSettingsTypes.USB_DEVICES)]] 175 [[computeTitleForContentCategory(ContentSettingsTypes.USB_DEVICES)]]
168 </div> 176 </div>
169 </div> 177 </div>
170 </template> 178 </template>
171 <script src="site_settings_page.js"></script> 179 <script src="site_settings_page.js"></script>
172 </dom-module> 180 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698