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

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

Issue 2237823003: Site Settings Desktop: Implement USB devices section. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address feedback Created 4 years, 4 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.USB_DEVICES]]"
163 on-tap="onTapCategory">
164 <iron-icon icon="[[computeIconForContentCategory(
165 ContentSettingsTypes.USB_DEVICES)]]"></iron-icon>
166 <div class="middle">
167 [[computeTitleForContentCategory(ContentSettingsTypes.USB_DEVICES)]]
168 </div>
169 </div>
162 </template> 170 </template>
163 <script src="site_settings_page.js"></script> 171 <script src="site_settings_page.js"></script>
164 </dom-module> 172 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698