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

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

Issue 2915743002: MD Settings: Include settings for displaying Images in Site Details. (Closed)
Patch Set: Fixup Created 3 years, 6 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
3 <link rel="import" href="chrome://resources/html/action_link.html"> 3 <link rel="import" href="chrome://resources/html/action_link.html">
4 <link rel="import" href="chrome://resources/html/action_link_css.html"> 4 <link rel="import" href="chrome://resources/html/action_link_css.html">
5 <link rel="import" href="chrome://resources/cr_elements/cr_dialog/cr_dialog.html "> 5 <link rel="import" href="chrome://resources/cr_elements/cr_dialog/cr_dialog.html ">
6 <link rel="import" href="chrome://resources/cr_elements/icons.html"> 6 <link rel="import" href="chrome://resources/cr_elements/icons.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="../icons.html">
8 <link rel="import" href="../route.html"> 9 <link rel="import" href="../route.html">
9 <link rel="import" href="../settings_shared_css.html"> 10 <link rel="import" href="../settings_shared_css.html">
10 <link rel="import" href="constants.html"> 11 <link rel="import" href="constants.html">
11 <link rel="import" href="site_details_permission.html"> 12 <link rel="import" href="site_details_permission.html">
12 <link rel="import" href="site_settings_behavior.html"> 13 <link rel="import" href="site_settings_behavior.html">
13 <link rel="import" href="website_usage_private_api.html"> 14 <link rel="import" href="website_usage_private_api.html">
14 15
15 <dom-module id="site-details"> 16 <dom-module id="site-details">
16 <template> 17 <template>
17 <style include="settings-shared action-link"> 18 <style include="settings-shared action-link">
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
83 label="$i18n{siteSettingsNotifications}" site="[[site]]"> 84 label="$i18n{siteSettingsNotifications}" site="[[site]]">
84 </site-details-permission> 85 </site-details-permission>
85 <site-details-permission category="{{ContentSettingsTypes.JAVASCRIPT}}" 86 <site-details-permission category="{{ContentSettingsTypes.JAVASCRIPT}}"
86 icon="settings:code" id="javascript" 87 icon="settings:code" id="javascript"
87 label="$i18n{siteSettingsJavascript}" site="[[site]]"> 88 label="$i18n{siteSettingsJavascript}" site="[[site]]">
88 </site-details-permission> 89 </site-details-permission>
89 <site-details-permission category="{{ContentSettingsTypes.PLUGINS}}" 90 <site-details-permission category="{{ContentSettingsTypes.PLUGINS}}"
90 icon="cr:extension" id="plugins" label="$i18n{siteSettingsFlash}" 91 icon="cr:extension" id="plugins" label="$i18n{siteSettingsFlash}"
91 site="[[site]]"> 92 site="[[site]]">
92 </site-details-permission> 93 </site-details-permission>
94 <site-details-permission category="{{ContentSettingsTypes.IMAGES}}"
95 icon="settings:photo" id="images" label="$i18n{siteSettingsImages}"
96 site="[[site]]">
97 </site-details-permission>
93 <site-details-permission category="{{ContentSettingsTypes.POPUPS}}" 98 <site-details-permission category="{{ContentSettingsTypes.POPUPS}}"
94 icon="cr:open-in-new" id="popups" label="$i18n{siteSettingsPopups}" 99 icon="cr:open-in-new" id="popups" label="$i18n{siteSettingsPopups}"
95 site="[[site]]"> 100 site="[[site]]">
96 </site-details-permission> 101 </site-details-permission>
97 <site-details-permission 102 <site-details-permission
98 category="{{ContentSettingsTypes.BACKGROUND_SYNC}}" 103 category="{{ContentSettingsTypes.BACKGROUND_SYNC}}"
99 icon="settings:sync" id="backgroundSync" 104 icon="settings:sync" id="backgroundSync"
100 label="$i18n{siteSettingsBackgroundSync}" site="[[site]]"> 105 label="$i18n{siteSettingsBackgroundSync}" site="[[site]]">
101 </site-details-permission> 106 </site-details-permission>
102 <site-details-permission 107 <site-details-permission
(...skipping 13 matching lines...) Expand all
116 </a> 121 </a>
117 </div> 122 </div>
118 </div> 123 </div>
119 <website-usage-private-api id="usageApi" 124 <website-usage-private-api id="usageApi"
120 website-data-usage="{{storedData_}}" 125 website-data-usage="{{storedData_}}"
121 website-storage-type="{{storageType_}}"> 126 website-storage-type="{{storageType_}}">
122 </website-usage-private-api> 127 </website-usage-private-api>
123 </template> 128 </template>
124 <script src="site_details.js"></script> 129 <script src="site_details.js"></script>
125 </dom-module> 130 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698