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

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

Issue 2817083002: [MD settings] MIDI and JavaScript icons closer to page info icons (Closed)
Patch Set: Created 3 years, 8 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="chrome://resources/html/action_link.html"> 2 <link rel="import" href="chrome://resources/html/action_link.html">
3 <link rel="import" href="chrome://resources/html/action_link_css.html"> 3 <link rel="import" href="chrome://resources/html/action_link_css.html">
4 <link rel="import" href="chrome://resources/cr_elements/cr_dialog/cr_dialog.html "> 4 <link rel="import" href="chrome://resources/cr_elements/cr_dialog/cr_dialog.html ">
5 <link rel="import" href="chrome://resources/cr_elements/icons.html"> 5 <link rel="import" href="chrome://resources/cr_elements/icons.html">
6 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/iron-f lex-layout.html"> 6 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/iron-f lex-layout.html">
7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button.html"> 7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button.html">
8 <link rel="import" href="../route.html"> 8 <link rel="import" href="../route.html">
9 <link rel="import" href="../settings_shared_css.html"> 9 <link rel="import" href="../settings_shared_css.html">
10 <link rel="import" href="constants.html"> 10 <link rel="import" href="constants.html">
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
76 </site-details-permission> 76 </site-details-permission>
77 <site-details-permission category="{{ContentSettingsTypes.MIC}}" 77 <site-details-permission category="{{ContentSettingsTypes.MIC}}"
78 icon="settings:mic" id="mic" 78 icon="settings:mic" id="mic"
79 label="$i18n{siteSettingsMic}" site="[[site]]"> 79 label="$i18n{siteSettingsMic}" site="[[site]]">
80 </site-details-permission> 80 </site-details-permission>
81 <site-details-permission category="{{ContentSettingsTypes.NOTIFICATIONS}}" 81 <site-details-permission category="{{ContentSettingsTypes.NOTIFICATIONS}}"
82 icon="settings:notifications" id="notification" 82 icon="settings:notifications" id="notification"
83 label="$i18n{siteSettingsNotifications}" site="[[site]]"> 83 label="$i18n{siteSettingsNotifications}" site="[[site]]">
84 </site-details-permission> 84 </site-details-permission>
85 <site-details-permission category="{{ContentSettingsTypes.JAVASCRIPT}}" 85 <site-details-permission category="{{ContentSettingsTypes.JAVASCRIPT}}"
86 icon="settings:input" id="javascript" 86 icon="settings:code" id="javascript"
87 label="$i18n{siteSettingsJavascript}" site="[[site]]"> 87 label="$i18n{siteSettingsJavascript}" site="[[site]]">
88 </site-details-permission> 88 </site-details-permission>
89 <site-details-permission category="{{ContentSettingsTypes.PLUGINS}}" 89 <site-details-permission category="{{ContentSettingsTypes.PLUGINS}}"
90 icon="cr:extension" id="plugins" label="$i18n{siteSettingsFlash}" 90 icon="cr:extension" id="plugins" label="$i18n{siteSettingsFlash}"
91 site="[[site]]"> 91 site="[[site]]">
92 </site-details-permission> 92 </site-details-permission>
93 <site-details-permission category="{{ContentSettingsTypes.POPUPS}}" 93 <site-details-permission category="{{ContentSettingsTypes.POPUPS}}"
94 icon="cr:open-in-new" id="popups" label="$i18n{siteSettingsPopups}" 94 icon="cr:open-in-new" id="popups" label="$i18n{siteSettingsPopups}"
95 site="[[site]]"> 95 site="[[site]]">
96 </site-details-permission> 96 </site-details-permission>
(...skipping 19 matching lines...) Expand all
116 </a> 116 </a>
117 </div> 117 </div>
118 </div> 118 </div>
119 <website-usage-private-api id="usageApi" 119 <website-usage-private-api id="usageApi"
120 website-data-usage="{{storedData_}}" 120 website-data-usage="{{storedData_}}"
121 website-storage-type="{{storageType_}}"> 121 website-storage-type="{{storageType_}}">
122 </website-usage-private-api> 122 </website-usage-private-api>
123 </template> 123 </template>
124 <script src="site_details.js"></script> 124 <script src="site_details.js"></script>
125 </dom-module> 125 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698