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

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

Issue 2536993002: Remove support for the keygen tag (Closed)
Patch Set: Rebased Created 4 years 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/cr_elements/cr_dialog/cr_dialog.html "> 2 <link rel="import" href="chrome://resources/cr_elements/cr_dialog/cr_dialog.html ">
3 <link rel="import" href="chrome://resources/cr_elements/icons.html"> 3 <link rel="import" href="chrome://resources/cr_elements/icons.html">
4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/iron-f lex-layout.html"> 4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/iron-f lex-layout.html">
5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button.html"> 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button.html">
6 <link rel="import" href="/route.html"> 6 <link rel="import" href="/route.html">
7 <link rel="import" href="/settings_shared_css.html"> 7 <link rel="import" href="/settings_shared_css.html">
8 <link rel="import" href="/site_settings/constants.html"> 8 <link rel="import" href="/site_settings/constants.html">
9 <link rel="import" href="/site_settings/site_details_permission.html"> 9 <link rel="import" href="/site_settings/site_details_permission.html">
10 <link rel="import" href="/site_settings/site_settings_behavior.html"> 10 <link rel="import" href="/site_settings/site_settings_behavior.html">
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
90 </site-details-permission> 90 </site-details-permission>
91 <site-details-permission category="{{ContentSettingsTypes.POPUPS}}" 91 <site-details-permission category="{{ContentSettingsTypes.POPUPS}}"
92 icon="cr:open-in-new" id="popups" label="$i18n{siteSettingsPopups}" 92 icon="cr:open-in-new" id="popups" label="$i18n{siteSettingsPopups}"
93 site="[[site]]"> 93 site="[[site]]">
94 </site-details-permission> 94 </site-details-permission>
95 <site-details-permission 95 <site-details-permission
96 category="{{ContentSettingsTypes.BACKGROUND_SYNC}}" 96 category="{{ContentSettingsTypes.BACKGROUND_SYNC}}"
97 icon="settings:sync" id="backgroundSync" 97 icon="settings:sync" id="backgroundSync"
98 label="$i18n{siteSettingsBackgroundSync}" site="[[site]]"> 98 label="$i18n{siteSettingsBackgroundSync}" site="[[site]]">
99 </site-details-permission> 99 </site-details-permission>
100 <site-details-permission category="{{ContentSettingsTypes.KEYGEN}}"
101 icon="settings:code" id="keygen"label="$i18n{siteSettingsKeygen}"
102 site="[[site]]">
103 </site-details-permission>
104 <site-details-permission 100 <site-details-permission
105 category="{{ContentSettingsTypes.AUTOMATIC_DOWNLOADS}}" 101 category="{{ContentSettingsTypes.AUTOMATIC_DOWNLOADS}}"
106 icon="cr:file-download" id="automaticDownloads" 102 icon="cr:file-download" id="automaticDownloads"
107 label="$i18n{siteSettingsAutomaticDownloads}" site="[[site]]"> 103 label="$i18n{siteSettingsAutomaticDownloads}" site="[[site]]">
108 </site-details-permission> 104 </site-details-permission>
109 <site-details-permission 105 <site-details-permission
110 category="{{ContentSettingsTypes.UNSANDBOXED_PLUGINS}}" 106 category="{{ContentSettingsTypes.UNSANDBOXED_PLUGINS}}"
111 icon="cr:extension" id="unsandboxedPlugins" 107 icon="cr:extension" id="unsandboxedPlugins"
112 label="$i18n{siteSettingsUnsandboxedPlugins}" site="[[site]]"> 108 label="$i18n{siteSettingsUnsandboxedPlugins}" site="[[site]]">
113 </site-details-permission> 109 </site-details-permission>
114 110
115 <div on-tap="onClearAndReset_" raised class="list-item list-button"> 111 <div on-tap="onClearAndReset_" raised class="list-item list-button">
116 $i18n{siteSettingsClearAndReset} 112 $i18n{siteSettingsClearAndReset}
117 </div> 113 </div>
118 </div> 114 </div>
119 <website-usage-private-api id="usageApi" 115 <website-usage-private-api id="usageApi"
120 website-data-usage="{{storedData_}}" 116 website-data-usage="{{storedData_}}"
121 website-storage-type="{{storageType_}}"> 117 website-storage-type="{{storageType_}}">
122 </website-usage-private-api> 118 </website-usage-private-api>
123 </template> 119 </template>
124 <script src="site_details.js"></script> 120 <script src="site_details.js"></script>
125 </dom-module> 121 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698