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

Side by Side Diff: chrome/browser/resources/settings/site_settings/category_setting_exceptions.html

Issue 2889333002: [MD settings] move polymer.html imports to top of file (Closed)
Patch Set: rerun Created 3 years, 7 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
2 <link rel="import" href="../settings_shared_css.html"> 3 <link rel="import" href="../settings_shared_css.html">
3 <link rel="import" href="constants.html"> 4 <link rel="import" href="constants.html">
4 <link rel="import" href="site_list.html"> 5 <link rel="import" href="site_list.html">
5 6
6 <dom-module id="category-setting-exceptions"> 7 <dom-module id="category-setting-exceptions">
7 <template> 8 <template>
8 <style include="settings-shared"> 9 <style include="settings-shared">
9 site-list { 10 site-list {
10 border-bottom: 1px solid var(--paper-grey-300); 11 border-bottom: 1px solid var(--paper-grey-300);
11 } 12 }
(...skipping 16 matching lines...) Expand all
28 </site-list> 29 </site-list>
29 <site-list 30 <site-list
30 category="[[category]]" 31 category="[[category]]"
31 category-subtype="[[PermissionValues.ALLOW]]" 32 category-subtype="[[PermissionValues.ALLOW]]"
32 category-header="$i18n{siteSettingsAllow}" 33 category-header="$i18n{siteSettingsAllow}"
33 read-only-list="[[readOnlyList]]"> 34 read-only-list="[[readOnlyList]]">
34 </site-list> 35 </site-list>
35 </template> 36 </template>
36 <script src="category_setting_exceptions.js"></script> 37 <script src="category_setting_exceptions.js"></script>
37 </dom-module> 38 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698